Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
drizopoulos committed May 23, 2024
1 parent f462e1c commit 38ee080
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
#include <stdlib.h> // for NULL
#include <R_ext/Rdynload.h>

/* FIXME:
/* FIXME:
Check these declarations against the C/Fortran source code.
*/

/* .Call calls */
extern SEXP _JMbayes2_logLik_Event(SEXP, SEXP);
extern SEXP _JMbayes2_hSfun(SEXP, SEXP);
extern SEXP _JMbayes2_logLik_Event(SEXP, SEXP);
extern SEXP _JMbayes2_logLik_jm(SEXP, SEXP, SEXP, SEXP);
extern SEXP _JMbayes2_mcmc_cpp(SEXP, SEXP, SEXP, SEXP, SEXP);
extern SEXP _JMbayes2_mlogLik_jm(SEXP, SEXP, SEXP, SEXP, SEXP, SEXP);
extern SEXP _JMbayes2_simulate_REs(SEXP, SEXP, SEXP);

static const R_CallMethodDef CallEntries[] = {
{"_JMbayes2_logLik_Event", (DL_FUNC) &_JMbayes2_logLik_Event, 2},
{"_JMbayes2_hSfun", (DL_FUNC) &_JMbayes2_hSfun, 2},
{"_JMbayes2_logLik_Event", (DL_FUNC) &_JMbayes2_logLik_Event, 2},
{"_JMbayes2_logLik_jm", (DL_FUNC) &_JMbayes2_logLik_jm, 4},
{"_JMbayes2_mcmc_cpp", (DL_FUNC) &_JMbayes2_mcmc_cpp, 5},
{"_JMbayes2_mlogLik_jm", (DL_FUNC) &_JMbayes2_mlogLik_jm, 6},
Expand Down

0 comments on commit 38ee080

Please sign in to comment.