aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpollney <pollney@b1d164ef-f17a-46e7-89d4-021c7118ef4e>2003-07-15 09:58:59 +0000
committerpollney <pollney@b1d164ef-f17a-46e7-89d4-021c7118ef4e>2003-07-15 09:58:59 +0000
commit2af69d024f8b10ae92ced944ef61cbb0ec4ec2c1 (patch)
treee04ae0254b369e66cdd378b50fffe6ac819b58cc
parent25dc96dc698464d2435d56ae922df38f15169673 (diff)
Added info message informing of finite difference order.
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinBase/ADMMacros/trunk@62 b1d164ef-f17a-46e7-89d4-021c7118ef4e
-rw-r--r--schedule.ccl1
-rw-r--r--src/SetLocalSpatialOrder.c6
2 files changed, 5 insertions, 2 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 1c36b08..518c86e 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -7,3 +7,4 @@ schedule ADMMacros_SetLocalSpatialOrder AT BASEGRID
{
LANG: C
} "Initialize the local_spatial_order"
+
diff --git a/src/SetLocalSpatialOrder.c b/src/SetLocalSpatialOrder.c
index 2a91578..f6e7175 100644
--- a/src/SetLocalSpatialOrder.c
+++ b/src/SetLocalSpatialOrder.c
@@ -64,7 +64,9 @@ void ADMMacros_SetLocalSpatialOrder(CCTK_ARGUMENTS)
DECLARE_CCTK_PARAMETERS;
*local_spatial_order = spatial_order;
-
- return;
+ CCTK_VInfo(CCTK_THORNSTRING, "Spatial finite differencing order: %d",
+ spatial_order);
+
+ return;
}