From 2edbfbbbe36429f34537ace5f856eab45d4be8f0 Mon Sep 17 00:00:00 2001 From: Karsten Ahnert Date: Wed, 10 Oct 2012 12:24:03 +0200 Subject: [PATCH] starting doxygen reference --- boost/numeric/odeint/stepper/base/explicit_stepper_base.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boost/numeric/odeint/stepper/base/explicit_stepper_base.hpp b/boost/numeric/odeint/stepper/base/explicit_stepper_base.hpp index 4b7e1a55..63a22164 100644 --- a/boost/numeric/odeint/stepper/base/explicit_stepper_base.hpp +++ b/boost/numeric/odeint/stepper/base/explicit_stepper_base.hpp @@ -54,7 +54,7 @@ namespace odeint { * * This class serves as the base class for all explicit steppers with algebra and operations. * Step size control and error estimation as well as dense output is not provided. It can be - * used via the CRTP (currently recurring template pattern). It derives from algebra_stepper_base. + * used via the CRTP (currently recurring template pattern). It derives from [algebra_stepper_base](@ref algebra_stepper_base). * * \tparam Stepper The stepper on which this class should. It is used via CRTP, hence explicit_stepper_base provides the * interface for the Stepper @@ -155,7 +155,7 @@ public: * \brief This method performs one step with the stepper passed by Stepper. * It transforms the result in-place. This method is needed in order to solve the forwarding problem. * The difference to the other version is that it can be used like - * 'stepper.do_step( sys , make_range( iter1 , iter2 ) , t , dt )' + * `stepper.do_step( sys , make_range( iter1 , iter2 ) , t , dt )` * * \param system The system function to solve, hence the r.h.s. of the ordinary differential equation. It must fullfil the * Simple System concept.