Skip to content

Commit

Permalink
Remove integrate function from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiri Choi committed Feb 17, 2017
1 parent eb77786 commit 384c176
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
11 changes: 6 additions & 5 deletions source/rrRoadRunner.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,12 @@ class RR_DECLSPEC RoadRunner
bool clearModel();


/**
* @deprecated, use oneStep instead.
*/
double integrate(double t0, double tf, const SimulateOptions* options = 0);


/**
* Carry out a single integration step using a stepsize as indicated
* in the method call.
Expand All @@ -181,11 +187,6 @@ class RR_DECLSPEC RoadRunner
* @param tf final time
* @param options override current options.
*/
double integrate(double t0, double tf, const SimulateOptions* options = 0);

/**
* @deprecated, use integrate instead.
*/
double oneStep(double currentTime, double stepSize, bool reset = true);

/**
Expand Down
10 changes: 0 additions & 10 deletions wrappers/Python/doc/mod_roadrunner/cls_RoadRunner.rst
Original file line number Diff line number Diff line change
Expand Up @@ -408,16 +408,6 @@ All simulation related tasks can be accomplished with the single ``simulate`` me
>>> result = r.gillespie (0, 40, 20, [‘time’, ‘S1’])


.. method:: RoadRunner.integrate(t0, tf, options)
:module: RoadRunner

Carry out a single integration step using a stepsize as indicated in the method call.

:param t0: start time
:param tf: end time
:param options: override current options


.. py:function:: RoadRunner.plot(result, loc)
:module: RoadRunner

Expand Down

0 comments on commit 384c176

Please sign in to comment.