aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authortradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2000-04-18 12:14:15 +0000
committertradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2000-04-18 12:14:15 +0000
commit3c493a0ca4a871ca8be29dd11b15bdae3bf34ef3 (patch)
tree1d529dfb5e3ee8adbf77d71a991a9d9611c9451a /param.ccl
parent00c1801bd9d61ce5db061a96e738512b155cd160 (diff)
Changed type of the IO::recover parameter from BOOLEAN to KEYWORD with ranges
"no" :: "Don't recover" "manual" :: "Recover from the checkpoint file given as <recovery_dir>/<recover_file>" "yes" :: "Same as \"manual\" (this value is depricated)" "auto" :: "Automatically recover from the latest checkpoint file found in <recovery_dir>" with "no" being the default. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOUtil/trunk@57 b32723a9-ab3a-4a60-88e2-2e5d99d7c17a
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl6
1 files changed, 5 insertions, 1 deletions
diff --git a/param.ccl b/param.ccl
index b6ed4e4..7eae3b3 100644
--- a/param.ccl
+++ b/param.ccl
@@ -98,8 +98,12 @@ BOOLEAN checkpoint_ID "Checkpoint initial data ?" STEERABLE = RECOVER
BOOLEAN checkpoint_keep_all "Keep all checkpoint files ?" STEERABLE = RECOVER
{
} "no"
-BOOLEAN recover "Recover from a checkpoint file ?" STEERABLE = RECOVER
+KEYWORD recover "Recover from a checkpoint file ?" STEERABLE = RECOVER
{
+ "no" :: "Don't recover"
+ "manual" :: "Recover from the checkpoint file given as <recovery_dir>/<recover_file>"
+ "yes" :: "Same as \"manual\" (this value is depricated)"
+ "auto" :: "Automatically recover from the latest checkpoint file found in <recovery_dir>"
} "no"
INT checkpoint_every "Checkpoint every x iterations" STEERABLE = RECOVER
{