aboutsummaryrefslogtreecommitdiff
path: root/Tools/CodeGen/CactusBoundary.m
diff options
context:
space:
mode:
authorIan Hinder <ian.hinder@aei.mpg.de>2013-09-12 22:02:08 +0200
committerIan Hinder <ian.hinder@aei.mpg.de>2013-09-12 22:02:08 +0200
commit3237af2566109f099ee78a7effb511a65dc18ae0 (patch)
treec24ee9793a1ea67e4901a4221a5006568f9bc4e5 /Tools/CodeGen/CactusBoundary.m
parentc05f59d900a5477478a0cca12441953e4be3d2f8 (diff)
Change method used to determine which groups to create old-style boundary condition code for
This changes the ordering of code in Boundaries.cc.
Diffstat (limited to 'Tools/CodeGen/CactusBoundary.m')
-rw-r--r--Tools/CodeGen/CactusBoundary.m12
1 files changed, 9 insertions, 3 deletions
diff --git a/Tools/CodeGen/CactusBoundary.m b/Tools/CodeGen/CactusBoundary.m
index 127056b..f4d362d 100644
--- a/Tools/CodeGen/CactusBoundary.m
+++ b/Tools/CodeGen/CactusBoundary.m
@@ -166,12 +166,18 @@ DefFn[
Map[createBoundScalarParam, Map[unqualifiedGroupName,evolvedGroups]]]]];
-GetSources[evolvedGroups_, groups_, implementation_, thornName_] :=
+GetSources[evolvedGroups_, declaredGroups_, groups_, implementation_, thornName_] :=
Module[{boundarySpec, evolvedGFs},
- evolvedGFs = variablesFromGroups[evolvedGroups, groups];
+ evolvedGroups2 = MoLEvolvedGroups[declaredGroups, groups];
+
+ If[Union@evolvedGroups2 =!= Union[evolvedGroups],
+ Print["Group mismatch"];
+ Quit[1]];
+
+ evolvedGFs = variablesFromGroups[evolvedGroups2, groups];
boundarySpec =
{
- Groups -> evolvedGroups,
+ Groups -> evolvedGroups2,
EvolvedGFs -> Map[qualifyGFName[#, groups, implementation] &, evolvedGFs],
BaseImplementation -> implementation,
ThornName -> thornName,