blob: 738d637ccf5b0e891c7dbbe7ad09c8b8f7087875 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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");
}
}
|