aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-07-17 16:39:44 +0000
committerhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-07-17 16:39:44 +0000
commit89eb83f9c9987c19dbf9c5080d3ae4b89bc3ddbe (patch)
treee4e53916fd22155ae4886e72607bebb498a5efd1 /schedule.ccl
parent914ca2b871604f516dfa76b12179c7a3c464e1c1 (diff)
Optionally don't fill all timelevels after initial data is computed (changes the default but should have no effect).
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@23 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl12
1 files changed, 10 insertions, 2 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 6f552b4..9de0d8f 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -111,10 +111,18 @@ schedule GROUP MoL_Register AT Post_Recover_Variables
LANG:C
} "The group where physics thorns register variables with MoL"
-schedule MoL_FillAllLevels AT PostInitial AFTER MoL_Register
+if (initial_data_is_crap)
+{
+ schedule MoL_FillAllLevels AT PostInitial AFTER MoL_Register
+ {
+ LANG:C
+ } "A bad routine. Fills all previous timelevels with data copied from the current."
+}
+
+schedule MoL_ReportNumberVariables AT PostInitial AFTER MoL_Register
{
LANG:C
-} "A bad routine. Fills all previous timelevels with data copied from the current."
+} "Report how many of each type of variable there are"
######################################################
### The evolution step. This is almost a self ###