aboutsummaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorIan Hinder <ian.hinder@aei.mpg.de>2010-08-04 16:47:04 +0200
committerIan Hinder <ian.hinder@aei.mpg.de>2010-08-04 16:47:04 +0200
commit3d6cc02c4fc79e7969adeeeaf3a2a044462e440c (patch)
tree308837b01fb9ae49be287b48de6a728d7d409ed1 /Tools
parent720742c830b9dbe8c5287917130f4c5c344dc74e (diff)
CalculationBoundaries.m: Change severity of warning (from 0 to 1) when BCs cannot be registered.
At the moment, we register all faces, even though some of them might have been registered already as interpatch boundaries.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/CodeGen/CalculationBoundaries.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/CodeGen/CalculationBoundaries.m b/Tools/CodeGen/CalculationBoundaries.m
index a16a015..3d331ab 100644
--- a/Tools/CodeGen/CalculationBoundaries.m
+++ b/Tools/CodeGen/CalculationBoundaries.m
@@ -62,7 +62,7 @@ CalculationBoundariesFunction[calc_List, imp_String] :=
"ierr = Boundary_SelectGroupForBC(cctkGH, CCTK_ALL_FACES, GenericFD_GetBoundaryWidth(cctkGH), -1 /* no table */, ",
Quote[g], ",", Quote["flat"], ");\n",
"if (ierr < 0)\n",
- " CCTK_WARN(0, " <> Quote["Failed to register flat BC for "<>g<>"."] <> ");\n" }];
+ " CCTK_WARN(1, " <> Quote["Failed to register flat BC for "<>g<>"."] <> ");\n" }];
groups = lookup[calc, Groups];
groupNamesSet = qualifyGroupName[#, imp] & /@ groupsSetInCalc[calc, groups];