DiffEq - Modern C++ ODE Integration Library 1.0.0
High-performance C++ library for solving ODEs with async signal processing
|
Factory functions for creating real-time integrators. More...
Functions | |
template<system_state S, can_be_time T = double> | |
auto | make_realtime_rk45 (typename core::AbstractIntegrator< S, T >::system_function sys, typename RealtimeIntegrator< S, T >::RealtimeConfig config={}, T rtol=static_cast< T >(1e-6), T atol=static_cast< T >(1e-9)) |
template<system_state S, can_be_time T = double> | |
auto | make_realtime_dop853 (typename core::AbstractIntegrator< S, T >::system_function sys, typename RealtimeIntegrator< S, T >::RealtimeConfig config={}, T rtol=static_cast< T >(1e-10), T atol=static_cast< T >(1e-15)) |
Factory functions for creating real-time integrators.
auto diffeq::realtime::factory::make_realtime_dop853 | ( | typename core::AbstractIntegrator< S, T >::system_function | sys, |
typename RealtimeIntegrator< S, T >::RealtimeConfig | config = {} , |
||
T | rtol = static_cast<T>(1e-10) , |
||
T | atol = static_cast<T>(1e-15) |
||
) |
Definition at line 625 of file realtime_integrator.hpp.
auto diffeq::realtime::factory::make_realtime_rk45 | ( | typename core::AbstractIntegrator< S, T >::system_function | sys, |
typename RealtimeIntegrator< S, T >::RealtimeConfig | config = {} , |
||
T | rtol = static_cast<T>(1e-6) , |
||
T | atol = static_cast<T>(1e-9) |
||
) |
Definition at line 614 of file realtime_integrator.hpp.