Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pyrost
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nikolay Ivanov
pyrost
Commits
11bae72e
Commit
11bae72e
authored
4 years ago
by
simply-nicky
Browse files
Options
Downloads
Patches
Plain Diff
code clean-up
parent
1d03ffba
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dev.pxd
+0
-52
0 additions, 52 deletions
dev.pxd
with
0 additions
and
52 deletions
dev.pxd
deleted
100644 → 0
+
0
−
52
View file @
1d03ffba
cdef
extern
from
"
gsl/gsl_math.h
"
:
ctypedef
struct
gsl_function
:
double
(
*
function
)
(
double
x
,
void
*
params
)
nogil
void
*
params
cdef
extern
from
"
gsl/gsl_integration.h
"
:
ctypedef
struct
gsl_integration_workspace
ctypedef
struct
gsl_integration_qaws_table
ctypedef
struct
gsl_integration_qawo_table
ctypedef
struct
gsl_integration_cquad_workspace
cdef
enum
:
GSL_INTEG_GAUSS15
=
1
GSL_INTEG_GAUSS21
=
2
GSL_INTEG_GAUSS31
=
3
GSL_INTEG_GAUSS41
=
4
GSL_INTEG_GAUSS51
=
5
GSL_INTEG_GAUSS61
=
6
cdef
enum
gsl_integration_qawo_enum
:
GSL_INTEG_COSINE
,
GSL_INTEG_SINE
gsl_integration_cquad_workspace
*
gsl_integration_cquad_workspace_alloc
(
size_t
n
)
nogil
void
gsl_integration_cquad_workspace_free
(
gsl_integration_cquad_workspace
*
w
)
nogil
int
gsl_integration_cquad
(
gsl_function
*
f
,
double
a
,
double
b
,
double
epsabs
,
double
epsrel
,
gsl_integration_cquad_workspace
*
workspace
,
double
*
result
,
double
*
abserr
,
size_t
*
nevals
)
nogil
gsl_integration_workspace
*
gsl_integration_workspace_alloc
(
size_t
n
)
nogil
void
gsl_integration_workspace_free
(
gsl_integration_workspace
*
w
)
nogil
int
gsl_integration_qag
(
gsl_function
*
f
,
double
a
,
double
b
,
double
epsabs
,
double
epsrel
,
size_t
limit
,
int
key
,
gsl_integration_workspace
*
workspace
,
double
*
result
,
double
*
abserr
)
nogil
cdef
extern
from
"
gsl/gsl_rng.h
"
:
ctypedef
struct
gsl_rng_type
ctypedef
struct
gsl_rng
cdef
gsl_rng_type
*
gsl_rng_mt19937
gsl_rng
*
gsl_rng_alloc
(
gsl_rng_type
*
T
)
nogil
unsigned
long
int
gsl_rng_get
(
gsl_rng
*
r
)
nogil
void
gsl_rng_set
(
gsl_rng
*
r
,
unsigned
long
int
seed
)
nogil
void
gsl_rng_free
(
gsl_rng
*
r
)
nogil
cdef
extern
from
"
gsl/gsl_randist.h
"
:
unsigned
int
gsl_ran_poisson
(
gsl_rng
*
r
,
double
mu
)
nogil
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment