Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith Roberts committed Mar 7, 2020
1 parent 2ea97e0 commit 030ad04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Tests/RunTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@

TestJBAY

exit
TestECGC

exit
4 changes: 2 additions & 2 deletions Tests/TestECGC.m
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@
if(sum(Crnew < 6) < 50)
error(['Unable to bound maximum Courant number. Got ',...
num2str(max(Crnew)),' expecting < 6.0']);
%exit(1)
exit(1)
else
disp(['Unable to bound maximum Courant number. Got ',...
num2str(max(Crnew)),' expecting < 6.0']);
end
if(sum(Crnew > 0.5) < 50)
error(['Bounded minimum Courant number. Got ',...
num2str(min(Crnew))]);
%exit(1)
exit(1)
else
disp(['Bounded maximum Courant number. Got ',...
num2str(max(Crnew))]);
Expand Down

0 comments on commit 030ad04

Please sign in to comment.