summaryrefslogtreecommitdiff
path: root/examples/poiseulle_particles_2d_gpu/common.hpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-06-11 14:07:27 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-06-11 14:07:27 +0200
commit4c9e43a42c15ce93ffded21dfcaa171f63d20d69 (patch)
tree13a8e06228070a1989be24ba09130a5ccbafeb45 /examples/poiseulle_particles_2d_gpu/common.hpp
parentad0efe4d0e43a2a4f122677578107c2a0398e53f (diff)
downloadlibs-lbm-4c9e43a42c15ce93ffded21dfcaa171f63d20d69.tar.gz
Fixing deduction issues from constexpr values
Diffstat (limited to 'examples/poiseulle_particles_2d_gpu/common.hpp')
-rw-r--r--examples/poiseulle_particles_2d_gpu/common.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/poiseulle_particles_2d_gpu/common.hpp b/examples/poiseulle_particles_2d_gpu/common.hpp
index a69a2cf..6c05b64 100644
--- a/examples/poiseulle_particles_2d_gpu/common.hpp
+++ b/examples/poiseulle_particles_2d_gpu/common.hpp
@@ -55,7 +55,7 @@ using MacroStruct = Struct<
>;
template<typename T, typename Desc>
-using ParticleSpheroidGroup = ParticleGroup<T,Desc::D,ParticleCollisionSpheroid<T,2.0f>>;
+using ParticleSpheroidGroup = ParticleGroup<T,Desc::D,coll::Spheroid<T>>;
}
}