numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
Loading...
Searching...
No Matches
num_collect::ode::concepts::embedded_formula Concept Reference

Concept of embedded formulas. More...

#include <num_collect/ode/concepts/embedded_formula.h>

Concept definition

template<typename T>
requires requires(T& obj, const typename T::scalar_type& time,
const typename T::scalar_type& step_size,
const typename T::variable_type& current,
typename T::variable_type& estimate, typename T::variable_type& error) {
obj.step_embedded(time, step_size, current, estimate, error);
};
}

Detailed Description

Concept of embedded formulas.

Template Parameters
TType.

Definition at line 32 of file embedded_formula.h.