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

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

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

Concept definition

template<typename T>
concept num_collect::roots::concepts::differentiable_function = requires(const T& const_obj, T& obj) {
requires function<T>;
typename T::jacobian_type;
{
const_obj.jacobian()
}
Concept of differentiable functions for root-finding.
Concept of functions for root-finding.
Definition function.h:34

Detailed Description

Concept of differentiable functions for root-finding.

Template Parameters
TType.

Definition at line 33 of file differentiable_function.h.