| 
| 
static constexpr std::array< Value, Stages >  | error_coefficients { 0.2/3.0, 0.0, -0.3, 0.8/3.0, -0.1/3.0 } | 
| static constexpr std::array< std::array< Value, Stages >, Stages >  | k_coefficients | 
| 
static constexpr std::size_t  | Stages = 5 | 
| 
static constexpr std::array< Value, Stages >  | time_coefficients { 0.0, 1.0/3.0, 1.0/3.0, 0.5, 1.0 } | 
| 
static constexpr std::array< Value, Stages >  | update_coefficients { 1.0/6.0, 0.0, 0.0, 2.0/3.0, 1.0/6.0 } | 
template<typename Value = double>
struct TNL::Solvers::ODE::Methods::KuttaMerson< Value >
Fourth order Runge-Kutta-Merson method with adaptive step size. 
- Template Parameters
 - 
  
    | Value | is arithmetic type used for computations.  |