Ponca  7b3f8ad3fde25a027e6452783ccee143798a71b8
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:294

Detailed Description

Definition at line 89 of file concepts.h.