Skip to content

Commit

Permalink
Update buildSolverMatrix.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlitz authored Oct 22, 2024
1 parent 48a4765 commit d55a6c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DirectSolver/DirectSolverTake/buildSolverMatrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ SparseMatrix<double> DirectSolverTake::buildSolverMatrix()
return solver_matrix;
}

/* Only store the upper tridiagonal entries of the symmetric solver_matrix */
/* Only store the upper entries of the symmetric solver_matrix */
const int symmetric_nnz = nnz - (nnz - n) / 2;
SparseMatrix<double> symmetric_solver_matrix(n, n, symmetric_nnz);
symmetric_solver_matrix.is_symmetric(true);
Expand Down

0 comments on commit d55a6c9

Please sign in to comment.