Bug fix (max function not yet implemented for dseries objects).

time-shift
Stéphane Adjemian (Scylla) 2013-12-16 09:54:49 +01:00
parent 8f8bfe6cc3
commit 80868b2955
1 changed files with 2 additions and 2 deletions

View File

@ -40,6 +40,6 @@ options_.ep.order = 1;
options_.ep.nnodes = 3;
sts = extended_path([],100);
if max(max(abs(ts-sts))) > 1e-12
error('extended path algorithm fails in ./tests/ep/linear.mod')
if max(max(abs(ts.data-sts.data))) > 1e-12
error('extended path algorithm fails in ./tests/ep/linearmodel.mod')
end