aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-05-24 14:34:37 +0000
committerhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-05-24 14:34:37 +0000
commit627caa6bdf1e4b6db96a799454303d8b2e7935fe (patch)
tree1664fad214476385f5c296f081ee13bb2b8db58b /schedule.ccl
parentf3a2829b5b32b6fad8383ac16c16ac6c2f58b696 (diff)
Comment or ifdef out complex variable support as Carpet doesn't like it.
To use the complex variable stuff right now you need to uncomment the appropriate groups in the interface.ccl and #def MOLDOESCOMPLEX in the appropriate files. It still probably won't work. git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@13 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl34
1 files changed, 21 insertions, 13 deletions
diff --git a/schedule.ccl b/schedule.ccl
index a14a2dd..c787cc2 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -11,16 +11,20 @@ STORAGE: MoL_Counters, MoL_Original_Time
### Storage for the scratch space if memory hungry ###
########################################################
+# NOTE: I don't think this does what I expected.
+# I now think that this is always switching on memory,
+# regardless of the parameter...
+
if (MoL_Memory_Always_On)
{
STORAGE: ScratchSpace
- STORAGE: SandRScratchSpace
- STORAGE: ComplexScratchSpace
- STORAGE: ComplexSandRScratchSpace
+# STORAGE: ComplexScratchSpace
STORAGE: ArrayScratchSpace
+# STORAGE: ComplexArrayScratchSpace
+ STORAGE: SandRScratchSpace
+# STORAGE: ComplexSandRScratchSpace
STORAGE: ArraySandRScratchSpace
- STORAGE: ComplexArrayScratchSpace
- STORAGE: ComplexArraySandRScratchSpace
+# STORAGE: ComplexArraySandRScratchSpace
}
############################################################
@@ -102,17 +106,21 @@ schedule MoL_FillAllLevels AT PostInitial AFTER MoL_Register
### boundary enforcement and so on. ###
######################################################
+# NOTE: I temporarily comment out the storage statements as I do not
+# want to write out the if statements above! So this will not currently
+# work with the memory hungry parameter to no.
+
schedule GROUP MoL_Evolution AT Evol
{
LANG: C
- STORAGE: ScratchSpace
- STORAGE: SandRScratchSpace
- STORAGE: ComplexScratchSpace
- STORAGE: ComplexSandRScratchSpace
- STORAGE: ArrayScratchSpace
- STORAGE: ArraySandRScratchSpace
- STORAGE: ComplexArrayScratchSpace
- STORAGE: ComplexArraySandRScratchSpace
+ STORAGE: ScratchSpace
+# STORAGE: ComplexScratchSpace
+ STORAGE: SandRScratchSpace
+# STORAGE: ComplexSandRScratchSpace
+ STORAGE: ArrayScratchSpace
+# STORAGE: ComplexArrayScratchSpace
+ STORAGE: ArraySandRScratchSpace
+# STORAGE: ComplexArraySandRScratchSpace
} "A single Cactus evolution step using MoL"
######################################################