Skip to content

Commit

Permalink
Typo: norm of the eigen value.
Browse files Browse the repository at this point in the history
  • Loading branch information
fghoussen committed Sep 19, 2024
1 parent 1784ab7 commit 93f4833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EXAMPLES/MATRIX_MARKET/arpackmm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ int run(int argc, char** argv) {
cout << endl;
for (auto idx = 0; idx < out.res.size(); idx++) {
tuple<double, double> res = out.res[idx];
cout << "RES: eigen value " << idx << ": " << get<0>(res);
cout << "RES: eigen value " << idx << ": norm " << get<0>(res);
cout << " (residual norm " << get<1>(res) << ")";
cout << endl;
}
Expand Down

0 comments on commit 93f4833

Please sign in to comment.