diff +rv/+diffops/constructFluxDiffOpWithClosures.m @ 1180:beecb580c5bf feature/rv

Add missing semicolons
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Fri, 05 Jul 2019 16:49:19 +0200
parents 65a577db5ca0
children
line wrap: on
line diff
--- a/+rv/+diffops/constructFluxDiffOpWithClosures.m	Fri Jun 28 17:24:01 2019 +0200
+++ b/+rv/+diffops/constructFluxDiffOpWithClosures.m	Fri Jul 05 16:49:19 2019 +0200
@@ -1,4 +1,4 @@
 function [D, penalties] = constructFluxDiffOpWithClosures(scheme, g, order, schemeParams, opSet, BCs)
-    [D, diffOp] = rv.diffops.constructFluxDiffOp(scheme, g, order, schemeParams, opSet, BCs)
-    [D, penalties] = rv.diffops.addClosuresToDiffOp(diffOp, D, BCs)
+    [D, diffOp] = rv.diffops.constructFluxDiffOp(scheme, g, order, schemeParams, opSet, BCs);
+    [D, penalties] = rv.diffops.addClosuresToDiffOp(diffOp, D, BCs);
 end
\ No newline at end of file