From c6849a0194789acb8904ee008f82c0e60e98ab2a Mon Sep 17 00:00:00 2001 From: Michel Juillard Date: Thu, 2 Feb 2012 21:26:49 +0100 Subject: [PATCH] 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) --- tests/ep/linear.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ep/linear.mod b/tests/ep/linear.mod index 87420c807..4bf8dd312 100644 --- a/tests/ep/linear.mod +++ b/tests/ep/linear.mod @@ -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