From 6c897faabcad4614084db95caf0b72c1d38b3251 Mon Sep 17 00:00:00 2001 From: Puttichai Date: Tue, 29 Apr 2014 20:46:26 +0800 Subject: [PATCH] Increase integration maxsteps --- src/TOPP.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TOPP.h b/src/TOPP.h index 7531b49..26f578b 100644 --- a/src/TOPP.h +++ b/src/TOPP.h @@ -367,10 +367,10 @@ enum CLCReturnType { }; // Integrate forward from (sstart,sdstart) -int IntegrateForward(Constraints& constraints, dReal sstart, dReal sdstart, dReal dt, Profile& resprofile, int maxsteps=1e5, bool testaboveexistingprofiles=true, bool testmvc=true, bool zlajpah=false); +int IntegrateForward(Constraints& constraints, dReal sstart, dReal sdstart, dReal dt, Profile& resprofile, int maxsteps=1e6, bool testaboveexistingprofiles=true, bool testmvc=true, bool zlajpah=false); // Integrate backward from (sstart,sdstart) -int IntegrateBackward(Constraints& constraints, dReal sstart, dReal sdstart, dReal dt, Profile& resprofile, int maxsteps=1e5, bool testaboveexistingprofiles=true, bool testmvc=true, bool zlajpah=false); +int IntegrateBackward(Constraints& constraints, dReal sstart, dReal sdstart, dReal dt, Profile& resprofile, int maxsteps=1e6, bool testaboveexistingprofiles=true, bool testmvc=true, bool zlajpah=false); // Compute the CLC int ComputeLimitingCurves(Constraints& constraints);