Remove unnecessary output

This commit is contained in:
Max Luebke 2022-02-10 15:08:41 +01:00
parent f76d775050
commit dc5bc42bb8

View File

@ -299,17 +299,12 @@ void BTCSDiffusion::setBoundaryCondition(int index, bctype type, double value) {
}
inline void BTCSDiffusion::solveLES() {
std::cout << A_matrix << std::endl;
// start to solve
Eigen::SparseLU<Eigen::SparseMatrix<double>, Eigen::COLAMDOrdering<int>>
solver;
solver.analyzePattern(A_matrix);
solver.factorize(A_matrix);
std::cout << solver.lastErrorMessage() << " HHHHH" << std::endl;
x_vector = solver.solve(b_vector);
}