aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@b589c3ab-70e8-4b4d-a09f-cba2dd200880>2001-07-09 18:08:25 +0000
committertradke <tradke@b589c3ab-70e8-4b4d-a09f-cba2dd200880>2001-07-09 18:08:25 +0000
commit40076cb17ebdbe4e5b5bcacd69e6dc46c91ac8e0 (patch)
treeb8db63db510d5345ecf90405c25e3a10321a3a03
parent0264c236a611ad13c9025722364b9542b0fc2124 (diff)
Allow 'E', 'G', and 'g' as valid conversion specifiers in the
IOBasic::out_format and IOASCII::out_format parameter. This closes PR CactusBase-IOASCII 734. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOBasic/trunk@93 b589c3ab-70e8-4b4d-a09f-cba2dd200880
-rw-r--r--param.ccl4
1 files changed, 2 insertions, 2 deletions
diff --git a/param.ccl b/param.ccl
index 1eba513..9eb44d4 100644
--- a/param.ccl
+++ b/param.ccl
@@ -60,9 +60,9 @@ KEYWORD outScalar_style "Which style for Scalar output"
"xgraph" :: "1D output readable by xgraph"
} "xgraph"
-STRING out_format "Which format for Scalar output" STEERABLE = ALWAYS
+STRING out_format "Which format for Scalar floating-point number output" STEERABLE = ALWAYS
{
- ^(\.[0-9]{1,2})?[ef]$ :: "output with given precision in exponential / floating point notation"
+ ^(\.[0-9]{1,2})?[EGefg]$ :: "output with given precision in exponential / floating point notation"
} ".13f"