Skip to content

Commit

Permalink
print
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Sep 23, 2024
1 parent fefc2ab commit e56c553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/solver/test_lu_decomposition_policy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ void check_results(
{
EXPECT_EQ(A.NumberOfBlocks(), L.NumberOfBlocks());
EXPECT_EQ(A.NumberOfBlocks(), U.NumberOfBlocks());
std::cout << "A.NumRows: " << A.NumRows() << " A.NumColumns: " A.NumColumns() << std::endl;
std::cout << "A.NumRows: " << A.NumRows() << " A.NumColumns: " A.NumColumns() << " A.NumberOfBlocks: " << A.NumberOfBlocks() << std::endl;
for (std::size_t i_block = 0; i_block < A.NumberOfBlocks(); ++i_block)
{
for (std::size_t i = 0; i < A.NumRows(); ++i)
Expand Down

0 comments on commit e56c553

Please sign in to comment.