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

Concept of functions for root-finding. More...

#include <num_collect/roots/concepts/function.h>

Concept definition

template<typename T>
concept num_collect::roots::concepts::function = requires(const T& const_obj, T& obj) {
typename T::variable_type;
{ obj.evaluate_on(std::declval<typename T::variable_type>()) };
{
const_obj.value()
}
Concept of functions for root-finding.
Definition function.h:34

Detailed Description

Concept of functions for root-finding.

Template Parameters
TType.

Definition at line 34 of file function.h.