changeset 20647:05c77bc1d204

fix typo in changeset 01586012300e * scripts/ode/ode45.m: count 6 fevals for each time the dorpri stepper is invoked (not 7)
author Carlo de Falco <carlo.defalco@polimi.it>
date Mon, 12 Oct 2015 22:57:17 +0200
parents 01586012300e
children 27c091f4b66d
files scripts/ode/ode45.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ode/ode45.m	Mon Oct 12 22:50:59 2015 +0200
+++ b/scripts/ode/ode45.m	Mon Oct 12 22:57:17 2015 +0200
@@ -408,7 +408,7 @@
     vhavestats = true;
     vnsteps    = solution.vcntloop-2;                 # vcntloop from 2..end
     vnfailed   = (solution.vcntcycles-1)-(vnsteps)+1; # vcntcycl from 1..end
-    vnfevals   = 7 * (solution.vcntcycles-1) + 1;     # number of ode evaluations
+    vnfevals   = 6 * (solution.vcntcycles-1) + 1;     # number of ode evaluations
     vndecomps  = 0;                                   # number of LU decompositions
     vnpds      = 0;                                   # number of partial derivatives
     vnlinsols  = 0;                                   # no. of linear systems solutions