aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--interface.ccl9
-rw-r--r--param.ccl56
2 files changed, 32 insertions, 33 deletions
diff --git a/interface.ccl b/interface.ccl
index 341ef9b..c2bcd1c 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -200,19 +200,18 @@ CCTK_REAL MoL_Original_Time TYPE = SCALAR
# This is extremely unforgiving - it doesn't allow whitespace in the
# arithmetic expressions.
-CCTK_REAL ScratchSpace[MoL_Num_Evolved_Vars*MoL_Num_Scratch_Levels+1] TYPE = GF Timelevels = 1 tags='Prolongation="None"'
+CCTK_REAL ScratchSpace[MoL_Num_Evolved_Vars*MoL_Num_Scratch_Levels] TYPE = GF Timelevels = 1 tags='Prolongation="None"'
-CCTK_REAL SandRScratchSpace[MoL_Num_SaveAndRestore_Vars+1] TYPE = GF Timelevels = 1 tags='Prolongation="None"'
+CCTK_REAL SandRScratchSpace[MoL_Num_SaveAndRestore_Vars] TYPE = GF Timelevels = 1 tags='Prolongation="None"'
#CCTK_COMPLEX ComplexScratchSpace[MoL_Num_ComplexEvolved_Vars*MoL_Num_Scratch_Levels] TYPE = GF Timelevels = 1
#CCTK_COMPLEX ComplexSandRScratchSpace[MoL_Num_ComplexSaveAndRestore_Vars] TYPE = GF Timelevels = 1
-CCTK_REAL ArrayScratchSpace[MoL_Num_Scratch_Levels+1] TYPE = ARRAY DIM = 1 SIZE = MoL_Max_Evolved_Array_Size+1 Timelevels = 1
+CCTK_REAL ArrayScratchSpace[MoL_Num_Scratch_Levels] TYPE = ARRAY DIM = 1 SIZE = MoL_Max_Evolved_Array_Size Timelevels = 1
-CCTK_REAL ArraySandRScratchSpace TYPE = ARRAY DIM = 1 SIZE = MoL_Max_Evolved_Array_Size+1 Timelevels = 1
+CCTK_REAL ArraySandRScratchSpace TYPE = ARRAY DIM = 1 SIZE = MoL_Max_Evolved_Array_Size Timelevels = 1
#CCTK_COMPLEX ComplexArrayScratchSpace[MoL_Num_Scratch_Levels] TYPE = ARRAY DIM = 1 SIZE = MoL_Max_Evolved_ComplexArray_Size Timelevels = 1
#CCTK_COMPLEX ComplexArraySandRScratchSpace TYPE = ARRAY DIM = 1 SIZE = MoL_Max_Evolved_ComplexArray_Size Timelevels = 1
-
diff --git a/param.ccl b/param.ccl
index 8b02bfb..8f4672a 100644
--- a/param.ccl
+++ b/param.ccl
@@ -5,73 +5,73 @@ restricted:
CCTK_INT MoL_Num_Evolved_Vars "The maximum number of variables to be evolved by MoL" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Added to by other thorns."
-} 1
+ 0:* :: "Anything non negative. Added to by other thorns."
+} 0
CCTK_INT MoL_Num_Constrained_Vars "The maximum number of constrained variables with timelevels that MoL needs to know about" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Added to by other thorns."
-} 1
+ 0:* :: "Anything non negative. Added to by other thorns."
+} 0
CCTK_INT MoL_Num_SaveAndRestore_Vars "The maximum number of variables to be evolved outside of MoL but that MoL needs to know about" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Added to by other thorns."
-} 1
+ 0:* :: "Anything non negative. Added to by other thorns."
+} 0
CCTK_INT MoL_Num_ComplexEvolved_Vars "The maximum number of complex variables to be evolved by MoL" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Added to by other thorns."
-} 1
+ 0:* :: "Anything non negative. Added to by other thorns."
+} 0
CCTK_INT MoL_Num_ComplexConstrained_Vars "The maximum number of complex constrained variables with timelevels that MoL needs to know about" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Added to by other thorns."
-} 1
+ 0:* :: "Anything non negative. Added to by other thorns."
+} 0
CCTK_INT MoL_Num_ComplexSaveAndRestore_Vars "The maximum number of complex variables to be evolved outside of MoL but that MoL needs to know about" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Added to by other thorns."
-} 1
+ 0:* :: "Anything non negative. Added to by other thorns."
+} 0
CCTK_INT MoL_Max_Evolved_Array_Size "The maximum total size of any grid arrays to be evolved" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Accumulated by other thorns"
-} 1
+ 0:* :: "Anything non negative. Accumulated by other thorns"
+} 0
CCTK_INT MoL_Max_Evolved_ComplexArray_Size "The maximum total size of any complex grid arrays to be evolved" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Accumulated by other thorns"
-} 1
+ 0:* :: "Anything non negative. Accumulated by other thorns"
+} 0
CCTK_INT MoL_Num_ArrayEvolved_Vars "The maximum number of array variables to be evolved by MoL" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Added to by other thorns."
-} 1
+ 0:* :: "Anything non negative. Added to by other thorns."
+} 0
CCTK_INT MoL_Num_ArrayConstrained_Vars "The maximum number of array constrained variables with timelevels that MoL needs to know about" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Added to by other thorns."
-} 1
+ 0:* :: "Anything non negative. Added to by other thorns."
+} 0
CCTK_INT MoL_Num_ArraySaveAndRestore_Vars "The maximum number of array variables to be evolved outside of MoL but that MoL needs to know about" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Added to by other thorns."
-} 1
+ 0:* :: "Anything non negative. Added to by other thorns."
+} 0
CCTK_INT MoL_Num_ComplexArrayEvolved_Vars "The maximum number of complex array variables to be evolved by MoL" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Added to by other thorns."
-} 1
+ 0:* :: "Anything non negative. Added to by other thorns."
+} 0
CCTK_INT MoL_Num_ComplexArrayConstrained_Vars "The maximum number of complex array constrained variables with timelevels that MoL needs to know about" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Added to by other thorns."
-} 1
+ 0:* :: "Anything non negative. Added to by other thorns."
+} 0
CCTK_INT MoL_Num_ComplexArraySaveAndRestore_Vars "The maximum number of complex array variables to be evolved outside of MoL but that MoL needs to know about" ACCUMULATOR = (x+y)
{
- (0:* :: "Anything non negative. Added to by other thorns."
-} 1
+ 0:* :: "Anything non negative. Added to by other thorns."
+} 0
CCTK_INT MoL_Num_Scratch_Levels "Number of scratch levels required by the ODE method"
{