Skip to content

Commit

Permalink
add spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus-Bach committed May 8, 2017
1 parent c7e3b57 commit f7850a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meta/WeinbergAngle.m
Original file line number Diff line number Diff line change
Expand Up @@ -481,13 +481,13 @@
wavecontris = Cases[deltaVBcontris, WeinbergAngle`DeltaVB[{WeinbergAngle`fswave, __}, _]];
result = result <> "const " <> type <> " a1 = ";
result = result <> CreateContributionCall[boxcontri] <> ";\n";
result = result <> "const " <> type <> " deltaV =\n";
result = result <> "const " <> type <> " deltaV =\n ";
For[k = 1, k <= Length[vertexcontris], k++,
If[k > 1, result = result <> " + ";];
result = result <> CreateContributionCall[vertexcontris[[k]]];
];
result = result <> ";\n";
result = result <> "const " <> type <> " deltaZ =\n";
result = result <> "const " <> type <> " deltaZ =\n ";
For[k = 1, k <= Length[wavecontris], k++,
If[k > 1, result = result <> " + ";];
result = result <> CreateContributionCall[wavecontris[[k]]];
Expand Down

0 comments on commit f7850a2

Please sign in to comment.