aboutsummaryrefslogtreecommitdiff
path: root/src/EOS_GP.h
blob: 6fb5eb4a4d4ea948fff287b0ae2381a36fc92adc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef EOS_GP_H
#define EOS_GP_H

#include "cctk.h"

#define N_INDEPS 1
#define N_DEPS 5

CCTK_INT EOS_GP_SetArray(const CCTK_INT param_table,
                         const CCTK_INT n_elems,
                         const CCTK_POINTER* indep_vars,
                         const CCTK_INT* which_deps_to_set,
                         CCTK_POINTER* dep_vars);

CCTK_INT EOS_GP_Inverse_SetArray(const CCTK_INT param_table,
                                 const CCTK_INT n_elems,
                                 const CCTK_POINTER* indep_vars,
                                 const CCTK_INT* which_deps_to_set,
                                 CCTK_POINTER* dep_vars);

#endif