version 0.4.1
Ikarus::Concepts::PathFollowingStrategy Concept Reference

Concept defining the requirements for a path-following strategy. More...

#include <ikarus/utils/concepts.hh>

Concept definition

template<typename PF, typename F, typename SA>
concept Ikarus::Concepts::PathFollowingStrategy = requires(PF pft, F nop, SA args, typename F::Domain req) {
{ pft(args) } -> std::same_as<void>;
{ pft.initialPrediction(req, nop, args) } -> std::same_as<void>;
{ pft.intermediatePrediction(req, nop, args) } -> std::same_as<void>;
}
Concept defining the requirements for a path-following strategy.
Definition: utils/concepts.hh:192

Detailed Description

Template Parameters
PFType representing the path-following strategy.
FType representing the non-linear operator.
SAType representing the subsidiary arguments.