aboutsummaryrefslogtreecommitdiff
path: root/src/EOS_GP.h
diff options
context:
space:
mode:
authorknarf <knarf@a192deed-9f5d-41fb-bb60-7f59df5b1b8d>2009-12-02 22:22:53 +0000
committerknarf <knarf@a192deed-9f5d-41fb-bb60-7f59df5b1b8d>2009-12-02 22:22:53 +0000
commit9bdbc9209f0004429393aad47d0973046a4ee0dc (patch)
tree1468bb1aa622e40126a1f25dd42b7ffe6b23ccdc /src/EOS_GP.h
parent794e79d409732b82bb8871444d6e17c80b0e879c (diff)
thorns for general eos interface (moved from Whisky_Dev repositories)
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinEOS/EOSG_Polytrope/trunk@2 a192deed-9f5d-41fb-bb60-7f59df5b1b8d
Diffstat (limited to 'src/EOS_GP.h')
-rwxr-xr-xsrc/EOS_GP.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/EOS_GP.h b/src/EOS_GP.h
new file mode 100755
index 0000000..6fb5eb4
--- /dev/null
+++ b/src/EOS_GP.h
@@ -0,0 +1,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