Concept to check if a type implements all the needed functions to be an adaptive step sizing method.
More...
#include <ikarus/utils/concepts.hh>
template<typename AdaptiveStepSizing, typename NonLinearSolverInformation, typename SubsidiaryArgs, typename NonLinearOperator>
SubsidiaryArgs args, NonLinearOperator nop) {
{ adaptiveSS(info, args, nop) } -> std::same_as<void>;
{ adaptiveSS.targetIterations() } -> std::same_as<int>;
{ adaptiveSS.setTargetIterations(std::declval<int>()) } -> std::same_as<void>;
}
Concept to check if a type implements all the needed functions to be an adaptive step sizing method.
Definition: concepts.hh:202
- Template Parameters
-
AdaptiveStepSizing | The adaptive step sizing type. |
NonLinearSolverInformation | The non-linear solver information type. |
SubsidiaryArgs | The subsidiary arguments type. |