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

Concept of optimizers with box constraints. More...

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

Concept definition

template<typename T>
requires requires(T& solver, const typename T::variable_type& min_var,
const typename T::variable_type& max_var) {
{ solver.init(min_var, max_var) };
};
}

Detailed Description

Concept of optimizers with box constraints.

Template Parameters
TType.

Definition at line 32 of file box_constrained_optimizer.h.