#include "gtest/gtest.h"
TEST(Approximations, RBFWeight2D) {
double s = 1.23;
RBFWeight<Gaussian<double>,
Vec2d> weight(s);
EXPECT_NEAR(0.15528149718493840, weight(p), 1e-15);
}
TEST(Approximations, DISABLED_RBFWeightUsageExample) {
double s = 1.23;
RBFWeight<Gaussian<double>,
Vec2d> weight(s);
double val = weight(p);
std::cout << weight << std::endl;
(void) val;
}
}