From 384c176ffa1f5f5445342ebd28b9c59b44827938 Mon Sep 17 00:00:00 2001 From: Kiri Choi Date: Fri, 17 Feb 2017 08:49:06 -0800 Subject: [PATCH] Remove integrate function from docs --- source/rrRoadRunner.h | 11 ++++++----- wrappers/Python/doc/mod_roadrunner/cls_RoadRunner.rst | 10 ---------- 2 files changed, 6 insertions(+), 15 deletions(-) diff --git a/source/rrRoadRunner.h b/source/rrRoadRunner.h index b1b1817f48..07ac9f4159 100644 --- a/source/rrRoadRunner.h +++ b/source/rrRoadRunner.h @@ -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. @@ -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); /** diff --git a/wrappers/Python/doc/mod_roadrunner/cls_RoadRunner.rst b/wrappers/Python/doc/mod_roadrunner/cls_RoadRunner.rst index 62e47fc0b6..cce4a7a81c 100644 --- a/wrappers/Python/doc/mod_roadrunner/cls_RoadRunner.rst +++ b/wrappers/Python/doc/mod_roadrunner/cls_RoadRunner.rst @@ -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