aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschnetter <schnetter@0337457d-221f-4ee6-a5f0-14255d5370d8>2008-02-20 00:18:31 +0000
committerschnetter <schnetter@0337457d-221f-4ee6-a5f0-14255d5370d8>2008-02-20 00:18:31 +0000
commita2fd4c63a4f7f3dd01c27e4a98185c57987e8fb3 (patch)
treef2f4a9f2b16a2f5961111931d466c1204dd7b833
parent30c423e27e2a651cc6a0991531859c063e93cb79 (diff)
Allow grids with 0 grid cells, since this is legal. A grid with 0
cells still has one active grid point. git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/CoordBase/trunk@32 0337457d-221f-4ee6-a5f0-14255d5370d8
-rw-r--r--param.ccl6
1 files changed, 3 insertions, 3 deletions
diff --git a/param.ccl b/param.ccl
index 179bf99..7abe61a 100644
--- a/param.ccl
+++ b/param.ccl
@@ -51,7 +51,7 @@ CCTK_REAL dx "Grid spacing in x direction"
CCTK_INT ncells_x "Number of grid cells in x direction"
{
- 1:* :: ""
+ 0:* :: ""
} 1
# Domain description in the y direction.
@@ -83,7 +83,7 @@ CCTK_REAL dy "Grid spacing in y direction"
CCTK_INT ncells_y "Number of grid cells in y direction"
{
- 1:* :: ""
+ 0:* :: ""
} 1
# Domain description in the z direction.
@@ -115,7 +115,7 @@ CCTK_REAL dz "Grid spacing in z direction"
CCTK_INT ncells_z "Number of grid cells in z direction"
{
- 1:* :: ""
+ 0:* :: ""
} 1