summaryrefslogtreecommitdiff
path: root/examples/poiseulle_particles_2d_bgk_gpu/sim.cpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-04-27 15:39:55 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-04-27 15:39:55 +0200
commitc6d18a701c5dfbe89c0b1f40401548d8163e2841 (patch)
treec09c7ac61730da3ac64b292a6da238531a26b8ce /examples/poiseulle_particles_2d_bgk_gpu/sim.cpp
parent976588a946e0b6dcc1c35e3e11425a66608c357d (diff)
downloadlibs-lbm-c6d18a701c5dfbe89c0b1f40401548d8163e2841.tar.gz
Arg decode simplification, but not ready
Diffstat (limited to 'examples/poiseulle_particles_2d_bgk_gpu/sim.cpp')
-rw-r--r--examples/poiseulle_particles_2d_bgk_gpu/sim.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/poiseulle_particles_2d_bgk_gpu/sim.cpp b/examples/poiseulle_particles_2d_bgk_gpu/sim.cpp
index b8ac35e..1a9aa5b 100644
--- a/examples/poiseulle_particles_2d_bgk_gpu/sim.cpp
+++ b/examples/poiseulle_particles_2d_bgk_gpu/sim.cpp
@@ -6,6 +6,7 @@
#include <forstio/remote/filesystem/easy.hpp>
#include <forstio/codec/json/json.hpp>
#include <forstio/codec/simple.hpp>
+#include <forstio/codec/args.hpp>
namespace kel {
namespace lbm {
@@ -242,6 +243,14 @@ template<typename T, typename Desc>
saw::error_or<void> lbm_main(int argc, char** argv){
using namespace kel::lbm;
+ /*
+ auto eo_lbm_args = setup_lbm_env<sch::Args<sch::Struct<>,sch::Tuple<>>>(argc,argv);
+ if(eo_lbm_args.is_error()){
+ return std::move(eo_lbm_args.get_error());
+ }
+ auto& lbm_args = eo_lbm_args.get_value();
+ */
+
using dfi = df_info<T,Desc>;
auto eo_lbm_dir = output_directory();