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)
time-shift
Michel Juillard 2012-02-02 21:26:49 +01:00
parent 3cdde731dc
commit c6849a0194
1 changed files with 1 additions and 1 deletions

View File

@ -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