Skip to content

Commit

Permalink
Searching for the segfault
Browse files Browse the repository at this point in the history
  • Loading branch information
Epixu committed Sep 18, 2023
1 parent ae30271 commit fb64138
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/TestMatrices.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,11 @@ TEMPLATE_TEST_CASE("Matrices", "[mat]", REAL_TYPES) {

WHEN("Multiplying the matrices") {
r2 = x2 * y2;
Logger::Special("r2 = x2 * y2 done");
r3 = x3 * y3;
Logger::Special("r3 = x3 * y3 done");
r4 = x4 * y4;
Logger::Special("r4 = x4 * y4 done");

THEN("The result should be correct") {
REQUIRE(r2[0][0] == Approx(0).margin(0.001));
Expand Down

0 comments on commit fb64138

Please sign in to comment.