Skip to content

Commit

Permalink
isApprox
Browse files Browse the repository at this point in the history
  • Loading branch information
rokzitko committed Sep 24, 2024
1 parent 645f009 commit 1765cdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/unitary/unitary2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class unitaryProdTest : public ::testing::Test {
EigenMatrix<double> D = B*C;
my_result = A*D;
func_result = read_matrix("txt/temp_result_matrix.txt");
compare(my_result, func_result);
EXPECT_TRUE(my_result.isApprox(func_result));
}
EigenMatrix<double> A;
EigenMatrix<double> B;
Expand Down

0 comments on commit 1765cdb

Please sign in to comment.