Concept of calculator of length parameters.
More...
#include <num_collect/rbf/concepts/length_parameter_calculator.h>
template<typename T>
typename T::distance_function_type;
typename T::variable_type;
typename T::scalar_type;
T();
requires requires(T& obj,
const std::vector<typename T::variable_type>& variables,
};
{
obj.length_parameter_at(i)
};
requires requires(const T& obj) {
{
obj.scale()
} -> base::concepts::implicitly_convertible_to<typename T::scalar_type>;
};
requires requires(
T& obj, const typename T::scalar_type& value) { obj.scale(value); };
}
Concept of types implicitly convertible from the given type.
Concept of distance functions.
Concept of calculator of length parameters.
std::ptrdiff_t index_type
Type of indices in this library.
Concept of calculator of length parameters.
- Template Parameters
-
Definition at line 37 of file length_parameter_calculator.h.