Mario Mulansky
Mario Mulansky
The standard Sphinx doc scheme not really pleasant. A better alternative could be ReadTheDocs scheme: https://github.com/snide/sphinx_rtd_theme
PySpike can be installed without cython being available, but then a warning should be printed noting that only the slow python backends will be available.
SPIKY paper got published, update reference in docs
The documentation needs some updates. Some parts might be outdated and one should add classref statements to link to the reference from the tutorials.
When using integrate_times with a normal stepper you can run into situations where do_step is called more often then necessary due to precision problems. This happens especially when dt matches...
See http://stackoverflow.com/questions/28069165/error-c2582-boost-odeint-when-using-iterator-based-integration The following code snippet fails to compile with msvc-10: ``` { bulirsch_stoer stepper(1e-9, 0.0, 0.0, 0.0); state_type x = {{ 10.0 , 10.0 , 10.0 }}; auto iter...
Boost.odeint requires the Boost libraries to be available. This should be prominently mentioned to avoid confusion. E.g. see http://stackoverflow.com/questions/12895857/unable-to-compile-examples-in-odeint-package
Currently, we only implement do_step functions with in and out parameter and you this implementation putting in=out in case we deal with in-place computations (usual case). For some problems and...
0721600e508cbf93f399724a8552cccae935f589 introduced a new extrapolation stepper with configurable order. This method needs more documentation and probably some clean-up in the methods.
refactor bulirsch stoer to have on stepper that can handle arbitrary order with extrapolation and based on that a bulirsch-stoer that just adds order- and step size control