From cfed4b8aaa8d4c98f9ff2a3c6895df64111ec6eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?= <stephane.adjemian@univ-lemans.fr> Date: Thu, 8 Mar 2012 12:50:28 +0100 Subject: [PATCH] Changed some options and the test criteria which has to depend on the value of options_.dynatol.x. --- tests/ep/ar.mod | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/tests/ep/ar.mod b/tests/ep/ar.mod index fec8b9b52..a94a04d82 100644 --- a/tests/ep/ar.mod +++ b/tests/ep/ar.mod @@ -32,24 +32,19 @@ end; steady; options_.ep.verbosity = 0; -options_.ep.stochastic = 0; -options_.ep.order = 0; -options_.ep.nnodes = 0; +options_.ep.stochastic.order = 0; +options_.ep.stochastic.nodes = 0; options_.console_mode = 0; - ts = extended_path([],100); - options_.ep.verbosity = 0; -options_.ep.stochastic = 1; -options_.ep.order = 1; -options_.ep.nnodes = 5; +options_.ep.stochastic.order = 1; +options_.ep.stochastic.nodes = 3; options_.console_mode = 0; sts = extended_path([],100); - -if max(max(abs(ts-sts)))>1e-12 +if max(max(abs(ts-sts)))>options_.dynatol.x disp('Stochastic Extended Path:: Something is wrong here (potential bug in extended_path.m)!!!') end \ No newline at end of file -- GitLab