aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@ff385933-4943-42dc-877b-ffc776028de6>2004-07-07 16:37:06 +0000
committertradke <tradke@ff385933-4943-42dc-877b-ffc776028de6>2004-07-07 16:37:06 +0000
commitd8ba323511e9d281d1a3255a835d8d10e0211ef5 (patch)
tree9b2706f955daa30d68cefee93236daa674daa73d
parentfb9287e023d7b52820245583baaae64303f53449 (diff)
Schedule NaNChecker at POSTSTEP so that the NaNmask can be safely output.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/NaNChecker/trunk@69 ff385933-4943-42dc-877b-ffc776028de6
-rw-r--r--schedule.ccl6
1 files changed, 3 insertions, 3 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 1821785..ff045cf 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -5,19 +5,19 @@ if (*check_vars && check_every > 0)
{
STORAGE: NaNmask NaNsFound
- schedule NaNChecker_ResetCounter at ANALYSIS before NaNChecker_NaNCheck
+ schedule NaNChecker_ResetCounter at POSTSTEP before NaNChecker_NaNCheck
{
LANG: C
OPTIONS: level
} "Reset the NaNChecker::NaNsFound counter"
- schedule NaNChecker_NaNCheck at ANALYSIS
+ schedule NaNChecker_NaNCheck at POSTSTEP
{
LANG: C
OPTIONS: local
} "Check for NaNs and count them in NaNChecker::NaNsFound"
- schedule NaNChecker_TakeAction at ANALYSIS after NaNChecker_NaNCheck
+ schedule NaNChecker_TakeAction at POSTSTEP after NaNChecker_NaNCheck
{
LANG: C
OPTIONS: level