blob: 5aa39f430d76fbc9e3c5837699e6a51af5515e8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "../c++/lbm.hpp"
int main(int argc, char** argv){
using namespace kel::lbm;
converter<sch::Float64> conv{
{0.1},
{0.1}
};
print_lbm_meta<sch::Float64,sch::Descriptor<2,9>>(conv, {1e-5});
return 0;
}
|