diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-03-20 16:08:25 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-03-20 16:08:25 +0100 |
| commit | e85b713cf31697a3309e12f30ba5759fee1cd3cc (patch) | |
| tree | 1ee1d17a373cde1dbb1dddb86d3d43e5ccfe7cc1 /lib/core/tests | |
| parent | 9b1ccde40d24ac5e8e22557fc762283382d3e985 (diff) | |
| download | libs-lbm-e85b713cf31697a3309e12f30ba5759fee1cd3cc.tar.gz | |
Trying out n linear interpolation
Diffstat (limited to 'lib/core/tests')
| -rw-r--r-- | lib/core/tests/math.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/core/tests/math.cpp b/lib/core/tests/math.cpp new file mode 100644 index 0000000..738d637 --- /dev/null +++ b/lib/core/tests/math.cpp @@ -0,0 +1,20 @@ +#include <forstio/test/suite.hpp> + +#include "../c++/math/n_linear.hpp" + +namespace { +namespace sch { +using namespace saw::schema; +} + +SAW_TEST("Math 2-Linear"){ + using namespace kel; + + saw::data<sch::FixedArray<sch::Vector<sch::Float64,2u>,32u,32u>> field; + + saw::data<sch::Vector<sch::Float64,2u>> pos; + + SAW_EXPECT(true, "Default true check"); +} + +} |
