#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 geneal ## X (SEXP State); \
SEXP
yaml ## X (SEXP State)
SEXP yaml(SEXP State)
extract a YAML description
SEXP run(SEXP State, SEXP Tout)
run simulations
SEXP revive(SEXP State, SEXP Params)
refresh parameters
SEXP make(SEXP Params, SEXP IVPs, SEXP T0)
initialization
Definition at line 7 of file init.h.
◆ 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}, \
{"geneal" #X, (DL_FUNC) &geneal ## X, 1} \
Definition at line 14 of file init.h.