aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2009-04-27 11:09:18 -0500
committerErik Schnetter <schnetter@cct.lsu.edu>2009-04-27 11:09:18 -0500
commitd23f291536fe9aeb728bfda19931a8e4961a1406 (patch)
tree70be532d06d01e276dd0b997b722495c00e3646a
parent5a18bb5cacbd7bea152ab1f2916493b3dcf1d53c (diff)
Add semicolons to prevent output
-rw-r--r--m/WaveToy.m12
1 files changed, 7 insertions, 5 deletions
diff --git a/m/WaveToy.m b/m/WaveToy.m
index a00df0f..88e91c4 100644
--- a/m/WaveToy.m
+++ b/m/WaveToy.m
@@ -119,7 +119,7 @@ initialCalc =
u -> 0,
rho -> 0
}
-}
+};
initialCalcFO =
{
@@ -133,7 +133,7 @@ initialCalcFO =
v[la] -> 0,
rho -> 0
}
-}
+};
(******************************************************************************)
(* Evolution equations *)
@@ -177,7 +177,7 @@ evolCalc =
dot[u] -> rho,
dot[rho] -> KD[ua,ub] PD[u,la,lb]
}
-}
+};
evolCalcFO =
{
@@ -200,7 +200,7 @@ evolCalcFO =
dot[rho] -> KD[ua,ub] PD[v[la],lb],
dot[v[la]] -> PD[rho,la]
}
-}
+};
(******************************************************************************)
(* Constraint equations *)
@@ -225,7 +225,7 @@ constraintsCalcFO =
Jinv33 -> dcdz,
w[ua] -> Eps[ua,ub,uc] PD[v[lb],lc]
}
-}
+};
(******************************************************************************)
(* Implementations *)
@@ -247,6 +247,7 @@ CreateKrancThornTT [groups, ".", "ML_WaveToy",
Calculations -> calculations,
DeclaredGroups -> declaredGroupNames,
PartialDerivatives -> derivatives,
+ UseLoopControl -> True,
EvolutionTimelevels -> evolutionTimelevels,
InheritedImplementations -> inheritedImplementations
];
@@ -264,6 +265,7 @@ CreateKrancThornTT [groupsFO, ".", "ML_FOWaveToy",
Calculations -> calculationsFO,
DeclaredGroups -> declaredGroupNamesFO,
PartialDerivatives -> derivatives,
+ UseLoopControl -> True,
EvolutionTimelevels -> evolutionTimelevels,
InheritedImplementations -> inheritedImplementations
];