| 
| 
static constexpr std::array< Value, Stages >  | higher_order_update_coefficients { 1.0/512.0, 255.0/256.0, 1.0/512.0 } | 
| static constexpr std::array< std::array< Value, Stages >, Stages >  | k_coefficients | 
| 
static constexpr std::array< Value, Stages >  | lower_order_update_coefficients { 1.0/256.0, 255.0/256.0, 0.0 } | 
| 
static constexpr std::size_t  | Stages = 3 | 
| 
static constexpr std::array< Value, Stages >  | time_coefficients { 0.0, 1.0/2.0, 1.0 } | 
template<typename Value = double>
struct TNL::Solvers::ODE::Methods::Fehlberg2< Value >
Second order Fehlbergs's method with adaptive time step. 
- Template Parameters
 - 
  
    | Value | is arithmetic type used for computations.  |