jfjoch_test: Reduce precision requirements after switching to -march=x86_64-v3.

This commit is contained in:
2026-06-03 11:51:33 +02:00
parent ffcf037205
commit 4aac2aabd3
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -219,8 +219,8 @@ TEST_CASE("FFTIndexer","[Indexing]") {
REQUIRE(result.lattice.size() == 1);
auto uc_out = result.lattice[0].GetUnitCell();
CHECK(uc_out.a == Catch::Approx(uc.a));
CHECK(uc_out.b == Catch::Approx(uc.b));
CHECK(uc_out.a == Catch::Approx(uc.b));
CHECK(uc_out.b == Catch::Approx(uc.a));
CHECK(uc_out.c == Catch::Approx(uc.c));
CHECK(uc_out.alpha == Catch::Approx(uc.alpha));