Remove unused code.

This commit is contained in:
Atgeirr Flø Rasmussen 2014-05-19 11:13:17 +02:00
parent d9d5074dd2
commit ec03062b51

View File

@ -160,18 +160,6 @@ namespace Opm
// Solve reduced system.
const Eigen::SparseMatrix<double, Eigen::RowMajor> matr = total_residual.derivative()[0];
SolutionVector dx(SolutionVector::Zero(total_residual.size()));
/*
Opm::LinearSolverInterface::LinearSolverReport rep
= linsolver_full_->solve(matr.rows(), matr.nonZeros(),
matr.outerIndexPtr(), matr.innerIndexPtr(), matr.valuePtr(),
total_residual.value().data(), dx.data());
if (!rep.converged) {
OPM_THROW(std::runtime_error,
"FullyImplicitBlackoilSolver::solveJacobianSystem(): "
"Linear solver convergence failure.");
}
*/
// Create ISTL matrix.
Mat A = makeIstlMatrix(matr);