numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
Loading...
Searching...
No Matches
num_collect::rbf::concepts::rbf Concept Reference

Concept of RBFs. More...

#include <num_collect/rbf/concepts/rbf.h>

Concept definition

template<typename T>
concept num_collect::rbf::concepts::rbf = requires() {
typename T::scalar_type;
requires requires(
const T& obj, const typename T::scalar_type& distance_rate) {
{
obj(distance_rate)
};
}
Concept of same types.
Definition same_as.h:35
Concept of RBFs.
Definition rbf.h:33

Detailed Description

Concept of RBFs.

Template Parameters
TType.

Definition at line 33 of file rbf.h.