Skip to content

Commit

Permalink
Added prints in MUMPS
Browse files Browse the repository at this point in the history
  • Loading branch information
cvanaret committed Nov 18, 2024
1 parent d361749 commit cb203c5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions uno/solvers/MUMPS/MUMPSSolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ namespace uno {
this->COO_matrix.reset();
for (const auto [row_index, column_index, element]: matrix) {
this->COO_matrix.insert(element, static_cast<int>(row_index + this->fortran_shift), static_cast<int>(column_index + this->fortran_shift));
std::cout << "MUMPS: INSERTING " << element << " at indices (" << static_cast<int>(row_index + this->fortran_shift) << ", " <<
static_cast<int>(column_index + this->fortran_shift) << ")\n";
}
}
} // namespace

0 comments on commit cb203c5

Please sign in to comment.