Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
morse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
MOSAIC-software
morse
Commits
94b4c963
Commit
94b4c963
authored
2 years ago
by
thomas kleiber
Browse files
Options
Downloads
Patches
Plain Diff
C code: fix build warning
parent
a53df3ae
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/gutsRedIT.c
+3
-3
3 additions, 3 deletions
src/gutsRedIT.c
src/gutsRedSD.c
+3
-3
3 additions, 3 deletions
src/gutsRedSD.c
with
6 additions
and
6 deletions
src/gutsRedIT.c
+
3
−
3
View file @
94b4c963
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
#include
<math.h>
#include
<math.h>
void
gutsredit_init
(
void
(
*
odeparms
)(
int
*
,
double
*
));
void
gutsredit_init
(
void
(
*
odeparms
)(
int
*
,
double
*
));
void
gutsredit_free
();
void
gutsredit_free
(
void
);
/**
/**
* Number of MCMC iterations
* Number of MCMC iterations
...
@@ -32,7 +32,7 @@ void gutsredit_init(void (* odeparms)(int *, double *))
...
@@ -32,7 +32,7 @@ void gutsredit_init(void (* odeparms)(int *, double *))
{
{
// get access to parameters supplied to deSolve
// get access to parameters supplied to deSolve
SEXP
(
*
fun
)(
void
);
SEXP
(
*
fun
)(
void
);
fun
=
(
SEXP
(
*
)())
R_GetCCallable
(
"deSolve"
,
"get_deSolve_gparms"
);
fun
=
(
SEXP
(
*
)(
void
))
R_GetCCallable
(
"deSolve"
,
"get_deSolve_gparms"
);
if
(
LENGTH
(
fun
())
==
0
)
if
(
LENGTH
(
fun
())
==
0
)
error
(
"no parameters supplied"
);
error
(
"no parameters supplied"
);
...
@@ -56,7 +56,7 @@ void gutsredit_init(void (* odeparms)(int *, double *))
...
@@ -56,7 +56,7 @@ void gutsredit_init(void (* odeparms)(int *, double *))
/**
/**
* Free allocated memory
* Free allocated memory
*/
*/
void
gutsredit_free
()
void
gutsredit_free
(
void
)
{
{
Free
(
kd
);
Free
(
kd
);
Free
(
hb
);
Free
(
hb
);
...
...
This diff is collapsed.
Click to expand it.
src/gutsRedSD.c
+
3
−
3
View file @
94b4c963
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
#include
<math.h>
#include
<math.h>
void
gutsredsd_init
(
void
(
*
odeparms
)(
int
*
,
double
*
));
void
gutsredsd_init
(
void
(
*
odeparms
)(
int
*
,
double
*
));
void
gutsredsd_free
();
void
gutsredsd_free
(
void
);
/**
/**
* Number of MCMC iterations
* Number of MCMC iterations
...
@@ -39,7 +39,7 @@ void gutsredsd_init(void (* odeparms)(int *, double *))
...
@@ -39,7 +39,7 @@ void gutsredsd_init(void (* odeparms)(int *, double *))
error
(
"no parameters supplied"
);
error
(
"no parameters supplied"
);
// peak into first argument
// peak into first argument
MCMC
=
(
int
)
REAL
(
fun
())[
0
];
MCMC
=
(
int
)
REAL
(
fun
(
void
))[
0
];
// allocate memory
// allocate memory
int
N
=
MCMC
*
4
+
1
;
int
N
=
MCMC
*
4
+
1
;
double
*
arr
=
(
double
*
)
Calloc
(
N
,
double
);
double
*
arr
=
(
double
*
)
Calloc
(
N
,
double
);
...
@@ -62,7 +62,7 @@ void gutsredsd_init(void (* odeparms)(int *, double *))
...
@@ -62,7 +62,7 @@ void gutsredsd_init(void (* odeparms)(int *, double *))
/**
/**
* Free allocated memory
* Free allocated memory
*/
*/
void
gutsredsd_free
()
void
gutsredsd_free
(
void
)
{
{
Free
(
kd
);
Free
(
kd
);
Free
(
hb
);
Free
(
hb
);
...
...
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