Skip to content

Commit

Permalink
tighten steady state tol and diff step (modulation coef.)
Browse files Browse the repository at this point in the history
  • Loading branch information
0u812 committed Jun 25, 2015
1 parent f110cfb commit 7108dfd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/rrRoadRunner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ class RoadRunnerImpl {

RoadRunnerImpl(const std::string& uriOrSBML,
const Dictionary* dict) :
mDiffStepSize(0.05),
mSteadyStateThreshold(1.E-2),
mDiffStepSize(0.0001),
mSteadyStateThreshold(1.E-6),
simulationResult(),
integrator(0),
mSelectionList(),
Expand All @@ -250,8 +250,8 @@ class RoadRunnerImpl {

RoadRunnerImpl(const string& _compiler, const string& _tempDir,
const string& _supportCodeDir) :
mDiffStepSize(0.05),
mSteadyStateThreshold(1.E-2),
mDiffStepSize(0.0001),
mSteadyStateThreshold(1.E-6),
simulationResult(),
integrator(0),
mSelectionList(),
Expand Down

0 comments on commit 7108dfd

Please sign in to comment.