Skip to content

Commit

Permalink
increasing default quadrature tolerances again
Browse files Browse the repository at this point in the history
  • Loading branch information
paulstapor committed Jan 26, 2018
1 parent 837075b commit 7c15127
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions @amioption/amioption.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
% maximum number of integration steps
maxsteps = 1e4;
% absolute integration tolerace
quad_atol = 1e-8;
quad_atol = 1e-12;
% relative integration tolerace
quad_rtol = 1e-6;
quad_rtol = 1e-8;
% maximum number of integration steps
maxstepsB = 0;
% index of parameters for which the sensitivities are computed
Expand Down
4 changes: 2 additions & 2 deletions include/udata.h
Original file line number Diff line number Diff line change
Expand Up @@ -321,10 +321,10 @@ class UserData {
int maxsteps = 0;

/** absolute tolerances for backward quadratures */
double quad_atol = 1e-8;
double quad_atol = 1e-12;

/** relative tolerances for backward quadratures */
double quad_rtol = 1e-6;
double quad_rtol = 1e-8;

/** maximum number of allowed integration steps for backward problem */
int maxstepsB = 0;
Expand Down

0 comments on commit 7c15127

Please sign in to comment.