Skip to content

Commit

Permalink
remove unnecessary blanks
Browse files Browse the repository at this point in the history
  • Loading branch information
BalticPinguin committed Jul 31, 2023
1 parent 89836f9 commit 1c23015
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/numerics/shell_matrix.C
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public:
auto solution = rhs.clone();
solution->set(7,2.);
solution->close();
//auto rval = linear_solver.solve(mat, *solution, rhs, tol, maxits);
linear_solver.solve(mat, *solution, rhs, tol, maxits);

for (numeric_index_type m=0; m < rhs.size(); ++m)
Expand Down Expand Up @@ -91,7 +90,6 @@ public:
auto solution = rhs.clone();
solution->set(7,2.);
solution->close();
//auto rval = linear_solver.solve(mat, *solution, rhs, tol, maxits);
linear_solver.solve(mat, *solution, rhs, tol, maxits);

for (numeric_index_type m=0; m < rhs.size(); ++m)
Expand Down Expand Up @@ -153,7 +151,6 @@ private:

virtual void get_diagonal (libMesh::NumericVector<libMesh::Number> &dest) const override
{

for (numeric_index_type m=0; m < dest.local_size(); ++m)
dest.set(m, 1.);
}
Expand Down

0 comments on commit 1c23015

Please sign in to comment.