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

Concept of objective functions in optimization. More...

#include <num_collect/opt/concepts/objective_function.h>

Concept definition

template<typename T>
typename T::variable_type;
typename T::value_type;
requires requires(T& obj, const typename T::variable_type& var) {
{ obj.evaluate_on(var) };
};
requires requires(const T& obj) {
{
obj.value()
};
}
Concept of objective functions in optimization.

Detailed Description

Concept of objective functions in optimization.

Template Parameters
TType.

Definition at line 33 of file objective_function.h.