Skip to content
Snippets Groups Projects
Commit c6849a01 authored by MichelJuillard's avatar MichelJuillard
Browse files

relaxing slightly the accuracy check in ep/linear.mod (the higher

accuracy didn't pass the test in Octave and could generate problems
accross machine or Matlab versions)
parent 3cdde731
Branches
Tags
No related merge requests found
......@@ -36,6 +36,6 @@ ts = extended_path([],1000);
options_.ep.stochastic.status = 1;
sts = extended_path([],1000);
if max(max(abs(ts-sts))) > 1e-14
if max(max(abs(ts-sts))) > 1e-12
error('extended path algorithm fails in ./tests/ep/linear.mod')
end
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment