diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-08-21 15:17:03 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-08-21 15:17:03 +0200 |
| commit | 0abb54eb19edca97fce5c3931984adcd5463bfec (patch) | |
| tree | 5f91aac6eae5c689e774af827b5c6e284aec6499 /examples | |
| parent | 5cd236287542b47016fe3c49aa56bb66d74c4ad7 (diff) | |
| download | libs-lbm-0abb54eb19edca97fce5c3931984adcd5463bfec.tar.gz | |
Dangling
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/schaefer_turek_durst_krause_rannbacher/sim.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/schaefer_turek_durst_krause_rannbacher/sim.cpp b/examples/schaefer_turek_durst_krause_rannbacher/sim.cpp index b3422a5..b9b3778 100644 --- a/examples/schaefer_turek_durst_krause_rannbacher/sim.cpp +++ b/examples/schaefer_turek_durst_krause_rannbacher/sim.cpp @@ -20,7 +20,7 @@ using LbmArgs = Args< >; } -template<typename T, typename Desc, typename Coll> +template<typename T, typename Desc, typename Coll, uint64_t N> saw::error_or<void> lbm_main(const saw::data<args::LbmArgs>& args){ using namespace kel::lbm; @@ -211,11 +211,11 @@ saw::error_or<void> k_main(int argc, char** argv){ auto& coupling = an.template get<"coupling">(); if(coupling.stl_view() == "hlbm"){ - return lbm_main<FloatT,DescT,method::Hlbm>(args); + return lbm_main<FloatT,DescT,method::Hlbm,1u>(args); } else if(coupling.stl_view() == "fplbm"){ - return lbm_main<FloatT,DescT,method::FpLbm>(args); + return lbm_main<FloatT,DescT,method::FpLbm,1u>(args); } else if(coupling.stl_view() == "psm"){ - return lbm_main<FloatT,DescT,method::Psm>(args); + return lbm_main<FloatT,DescT,method::Psm,1u>(args); } return saw::make_error<saw::err::critical>("Invalid coupling"); |
