diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-05-07 13:39:51 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-05-07 13:39:51 +0200 |
commit | a77c3a2301cdc6ea220c3bac18b771fd42800687 (patch) | |
tree | 54693f4e8593d6d145d9366a996185c7b4a00f28 /tests/particles.cpp | |
parent | d6e2d808c4c2387f65f9d0de3431cb574d72da70 (diff) |
Stack smashing probably due to UB fixeddev
Diffstat (limited to 'tests/particles.cpp')
-rw-r--r-- | tests/particles.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/particles.cpp b/tests/particles.cpp index 6332195..873b8ad 100644 --- a/tests/particles.cpp +++ b/tests/particles.cpp @@ -31,4 +31,12 @@ SAW_TEST("Minor Test for mask"){ //saw::data<sch::Array<sch::T,2>> reference_mask{{{4+2,4+2}}}; //reference_mask.at({{0,0}}); } + +SAW_TEST("Verlet integration test"){ + using namespace kel; + lbm::particle_system<sch::T,2,sch::Particle<sch::T,2>> system; + + // system.step(); + +} } |