/usr/include/openturns/swig/ODESolverImplementation_doc.i is in libopenturns-dev 1.9-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | %define OT_ODESolver_doc
"ODE solver base class.
Solve an explicit first-order differential equation in the form :math:`y' = f(t, y)`"
%enddef
%feature("docstring") OT::ODESolverImplementation
OT_ODESolver_doc
// ---------------------------------------------------------------------
%define OT_ODESolver_solve_doc
"Solve ODE.
Parameters
----------
initialState : sequence of float
Initial value of the equation
timeGrid : sequence of float
Time steps
Returns
-------
values : :class:`~openturns.Sample`
The solution of the equation at grid points."
%enddef
%feature("docstring") OT::ODESolverImplementation::solve
OT_ODESolver_solve_doc
// ---------------------------------------------------------------------
%define OT_ODESolver_setTransitionFunction_doc
"Transition function accessor.
Parameters
----------
transitionFunction : :class:`~openturns.FieldFunction`
Transition function."
%enddef
%feature("docstring") OT::ODESolverImplementation::setTransitionFunction
OT_ODESolver_setTransitionFunction_doc
// ---------------------------------------------------------------------
%define OT_ODESolver_getTransitionFunction_doc
"Transition function accessor.
Returns
-------
transitionFunction : :class:`~openturns.FieldFunction`
Transition function."
%enddef
%feature("docstring") OT::ODESolverImplementation::getTransitionFunction
OT_ODESolver_getTransitionFunction_doc
|