Skip to content

Commit 9bfe917

Browse files
committed
remove unnecessary blanks
1 parent 2651191 commit 9bfe917

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/numerics/shell_matrix.C

-3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ public:
5555
auto solution = rhs.clone();
5656
solution->set(7,2.);
5757
solution->close();
58-
//auto rval = linear_solver.solve(mat, *solution, rhs, tol, maxits);
5958
linear_solver.solve(mat, *solution, rhs, tol, maxits);
6059

6160
for (numeric_index_type m=0; m < rhs.size(); ++m)
@@ -91,7 +90,6 @@ public:
9190
auto solution = rhs.clone();
9291
solution->set(7,2.);
9392
solution->close();
94-
//auto rval = linear_solver.solve(mat, *solution, rhs, tol, maxits);
9593
linear_solver.solve(mat, *solution, rhs, tol, maxits);
9694

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

154152
virtual void get_diagonal (libMesh::NumericVector<libMesh::Number> &dest) const override
155153
{
156-
157154
for (numeric_index_type m=0; m < dest.local_size(); ++m)
158155
dest.set(m, 1.);
159156
}

0 commit comments

Comments
 (0)