aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
authorhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-05-21 09:12:14 +0000
committerhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-05-21 09:12:14 +0000
commitf3a2829b5b32b6fad8383ac16c16ac6c2f58b696 (patch)
tree19a58318d2bcb7f95ecf044e5713453d9bff0bea /src/Startup.c
parent7e9dff2f70bd9950b27092e816f9a3cc14ff3582 (diff)
Add support for evolving complex GFs and (real and complex) GAs.
Only works with ICN or RK2 for now - in fact this commit may break the generic RK methods temporarily. Note the documentation isn't quite right - there's no longer a seperate function for each different type... git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@12 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
Diffstat (limited to 'src/Startup.c')
-rw-r--r--src/Startup.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/Startup.c b/src/Startup.c
index 3839de6..01ff6d6 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -32,6 +32,36 @@ CCTK_INT MoLNumEvolvedVariables = 0;
CCTK_INT MoLNumConstrainedVariables = 0;
CCTK_INT MoLNumSandRVariables = 0;
+
+CCTK_INT *EvolvedComplexVariableIndex = NULL;
+CCTK_INT *RHSComplexVariableIndex = NULL;
+CCTK_INT *ConstrainedComplexVariableIndex = NULL;
+CCTK_INT *SandRComplexVariableIndex = NULL;
+
+CCTK_INT MoLNumEvolvedComplexVariables = 0;
+CCTK_INT MoLNumConstrainedComplexVariables = 0;
+CCTK_INT MoLNumSandRComplexVariables = 0;
+
+
+CCTK_INT *EvolvedArrayVariableIndex = NULL;
+CCTK_INT *RHSArrayVariableIndex = NULL;
+CCTK_INT *ConstrainedArrayVariableIndex = NULL;
+CCTK_INT *SandRArrayVariableIndex = NULL;
+
+CCTK_INT MoLNumEvolvedArrayVariables = 0;
+CCTK_INT MoLNumConstrainedArrayVariables = 0;
+CCTK_INT MoLNumSandRArrayVariables = 0;
+
+
+CCTK_INT *EvolvedComplexArrayVariableIndex = NULL;
+CCTK_INT *RHSComplexArrayVariableIndex = NULL;
+CCTK_INT *ConstrainedComplexArrayVariableIndex = NULL;
+CCTK_INT *SandRComplexArrayVariableIndex = NULL;
+
+CCTK_INT MoLNumEvolvedComplexArrayVariables = 0;
+CCTK_INT MoLNumConstrainedComplexArrayVariables = 0;
+CCTK_INT MoLNumSandRComplexArrayVariables = 0;
+
/********************************************************************
********************* Local Data Types ***********************
********************************************************************/