Mercurial > repos > public > sbplib
comparison +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 |
comparison
equal
deleted
inserted
replaced
1179:cc2fd58989d1 | 1180:beecb580c5bf |
---|---|
1 function [D, penalties] = constructFluxDiffOpWithClosures(scheme, g, order, schemeParams, opSet, BCs) | 1 function [D, penalties] = constructFluxDiffOpWithClosures(scheme, g, order, schemeParams, opSet, BCs) |
2 [D, diffOp] = rv.diffops.constructFluxDiffOp(scheme, g, order, schemeParams, opSet, BCs) | 2 [D, diffOp] = rv.diffops.constructFluxDiffOp(scheme, g, order, schemeParams, opSet, BCs); |
3 [D, penalties] = rv.diffops.addClosuresToDiffOp(diffOp, D, BCs) | 3 [D, penalties] = rv.diffops.addClosuresToDiffOp(diffOp, D, BCs); |
4 end | 4 end |