#include <R_ext/Rdynload.h>
#include "internal.h"
Go to the source code of this file.
◆ DECLARATIONS
| #define DECLARATIONS |
( |
| X | ) |
|
Value: SEXP
make ## X (SEXP Params, SEXP IVPs, SEXP T0); \
SEXP
revive ## X (SEXP State, SEXP Params); \
SEXP
run ## X (SEXP State, SEXP Times); \
SEXP
yaml ## X (SEXP State)
SEXP run(SEXP State, SEXP Tout)
run simulations
SEXP revive(SEXP State, SEXP Params)
refresh parameters
SEXP yaml(const TYPE &X)
human/machine readable output
SEXP make(SEXP Params, SEXP IVPs, SEXP T0)
initialization
Definition at line 7 of file init.h.
7#define DECLARATIONS(X) \
8 SEXP make ## X (SEXP Params, SEXP IVPs, SEXP T0); \
9 SEXP revive ## X (SEXP State, SEXP Params); \
10 SEXP run ## X (SEXP State, SEXP Times); \
11 SEXP yaml ## X (SEXP State)
◆ METHODS
Value: {
"make" #X, (DL_FUNC) &
make ## X, 3}, \
{
"revive" #X, (DL_FUNC) &
revive ## X, 2}, \
{
"run" #X, (DL_FUNC) &
run ## X, 2}, \
{
"yaml" #X, (DL_FUNC) &
yaml ## X, 1} \
Definition at line 13 of file init.h.
13#define METHODS(X) \
14 {"make" #X, (DL_FUNC) &make ## X, 3}, \
15 {"revive" #X, (DL_FUNC) &revive ## X, 2}, \
16 {"run" #X, (DL_FUNC) &run ## X, 2}, \
17 {"yaml" #X, (DL_FUNC) &yaml ## X, 1} \
18