smooth
A C++ library for Lie theory
Loading...
Searching...
No Matches
SplineSpec Concept Reference

Spline specification. More...

#include <fit.hpp>

Concept definition

template<typename T>
concept SplineSpec = requires(T t) {
{ T::Degree } -> std::convertible_to<int>;
{ T::OptDeg } -> std::convertible_to<int>;
{ T::InnCnt } -> std::convertible_to<int>;
{ t.LeftDeg };
{ t.RghtDeg };
}
Spline specification.
Definition fit.hpp:21

Detailed Description

Spline specification.

Definition at line 21 of file fit.hpp.