diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-08-14 23:43:54 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-08-14 23:43:54 +0200 |
| commit | 0e9322fe0d024a06f23430285a055c16cf1e3eeb (patch) | |
| tree | 657a33098c96b14c0e09748c6b9d4a7e9cd16160 /modules/core/tests/equilibrium.cpp | |
| parent | 0d15416f60491bd4d17bd8b45a9487c98b8132b0 (diff) | |
| parent | c634aac438972b7bafb5fbbeba7962d174cc0d03 (diff) | |
| download | libs-lbm-0e9322fe0d024a06f23430285a055c16cf1e3eeb.tar.gz | |
Merge branch 'dev'
Diffstat (limited to 'modules/core/tests/equilibrium.cpp')
| -rw-r--r-- | modules/core/tests/equilibrium.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/tests/equilibrium.cpp b/modules/core/tests/equilibrium.cpp index 20a1f08..7d36600 100644 --- a/modules/core/tests/equilibrium.cpp +++ b/modules/core/tests/equilibrium.cpp @@ -20,7 +20,7 @@ void check_equilibrium(){ auto eq = lbm::equilibrium<lbm::sch::Float64,Descriptor>(rho,vel); for(saw::data<lbm::sch::UInt64> i{0u}; i.get() < Descriptor::Q; ++i){ - SAW_EXPECT(eq.at(i).get() == dfi::weights[i.get()], std::string{"No velocity and normalized rho should be exactly the weights: "} + std::to_string(eq.at(i).get()) + std::string{" "} + std::to_string(dfi::weights[i.get()])); + SAW_EXPECT(eq.at(i).get() == dfi::weights[i.get()], std::string{"No momentum and normalized rho should be exactly the weights: "} + std::to_string(eq.at(i).get()) + std::string{" "} + std::to_string(dfi::weights[i.get()])); } } |
