aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
authorschnetter <schnetter@20f44201-0f4f-0410-9130-e5fc2714a787>2007-03-02 23:25:35 +0000
committerschnetter <schnetter@20f44201-0f4f-0410-9130-e5fc2714a787>2007-03-02 23:25:35 +0000
commit9cba03dae49af1e8e4127178a6af30089c5030db (patch)
tree77e2757cb165b984cd2c6e79e8dca637f14e1075 /param.ccl
parent655126e98267998083de5d436930af235ef79485 (diff)
Don't use == to look for poison, use memcmp instead.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/RotatingSymmetry180/trunk@42 20f44201-0f4f-0410-9130-e5fc2714a787
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl6
1 files changed, 3 insertions, 3 deletions
diff --git a/param.ccl b/param.ccl
index c67ca31..0ef8f84 100644
--- a/param.ccl
+++ b/param.ccl
@@ -27,7 +27,7 @@ BOOLEAN poison_boundaries "Fill the symmetry boundary with a poison value before
{
} "no"
-CCTK_REAL poison_value "Poison value (must not occur naturally)"
+CCTK_INT poison_value "Integer value (0..255) used to poison new timelevels (with memset)" STEERABLE=always
{
- *:* :: ""
-} -424242.0
+ 0:255 :: "Must fit into a byte. Use 0 for zero, 255 for nan, and e.g. 113 for a large value."
+} 255