Ponca  4d2a58fa5c6375adef5c4b208f4d47e016cecd6d
Point Cloud Analysis library
Loading...
Searching...
No Matches
Ponca::ProvidesGLSParam Concept Reference

Concept definition

template<typename T>
concept Ponca::ProvidesGLSParam = requires(const T ct) {
ct.glsParam();
{ ct.glsParam().tau() } -> std::same_as<typename T::Scalar>;
{ ct.glsParam().eta() } -> std::same_as<typename T::VectorType>;
{ ct.glsParam().kappa() } -> std::same_as<typename T::Scalar>;
{ ct.glsParam().tau_normalized() } -> std::same_as<typename T::Scalar>;
{ ct.glsParam().eta_normalized() } -> std::same_as<typename T::VectorType>;
{ ct.glsParam().kappa_normalized() } -> std::same_as<typename T::Scalar>;
{ ct.glsParam().fitness() } -> std::same_as<typename T::Scalar>;
{ ct.glsParam().compareTo(ct, true) } -> std::same_as<typename T::Scalar>;
}
Aggregator class used to declare specialized structures using CRTP.
Definition basket.h:260

Detailed Description

Definition at line 89 of file concepts.h.