aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Tools/CodeGen/CactusBoundary.m5
1 files changed, 3 insertions, 2 deletions
diff --git a/Tools/CodeGen/CactusBoundary.m b/Tools/CodeGen/CactusBoundary.m
index 14cbc70..ba4a0f4 100644
--- a/Tools/CodeGen/CactusBoundary.m
+++ b/Tools/CodeGen/CactusBoundary.m
@@ -146,7 +146,8 @@ createBoundScalarParam[groupOrGF_] := {
Steerable -> Always
};
-GetParameters[evolvedGFs_, evolvedGroups_] :=
+DefFn[
+ GetParameters[evolvedGFs_List, evolvedGroups_List] :=
Join[Map[createBoundTypeParam[#,"skip"] &, evolvedGFs],
Map[createBoundTypeParam[#,"none"] &, Map[unqualifiedGroupName,evolvedGroups]],
@@ -157,7 +158,7 @@ GetParameters[evolvedGFs_, evolvedGroups_] :=
Map[createBoundLimitParam, Map[unqualifiedGroupName,evolvedGroups]],
Map[createBoundScalarParam, evolvedGFs],
- Map[createBoundScalarParam, Map[unqualifiedGroupName,evolvedGroups]]];
+ Map[createBoundScalarParam, Map[unqualifiedGroupName,evolvedGroups]]]];
GetSources[evolvedGroups_, groups_, implementation_, thornName_] :=