aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
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 ###