From: Matthias Maier Date: Wed, 28 Jun 2017 19:05:57 +0000 (-0500) Subject: testsuite: remove iterative_inverse from a test X-Git-Tag: v9.0.0-rc1~1447^2~9 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b163d08aa9e85d59c777b711a694f1fadb82c1f0;p=dealii.git testsuite: remove iterative_inverse from a test --- diff --git a/tests/lac/linear_operator_08.cc b/tests/lac/linear_operator_08.cc index bc59c054bb..d43bd983cf 100644 --- a/tests/lac/linear_operator_08.cc +++ b/tests/lac/linear_operator_08.cc @@ -42,7 +42,6 @@ #include #include #include -#include #ifdef DEAL_II_WITH_UMFPACK #include #endif @@ -398,21 +397,6 @@ int main() const Vector x = lo_A_inv*b; } #endif -// { // See #1673 and #1784 -// deallog << "IterativeInverse" << std::endl; -// -// PreconditionJacobi< SparseMatrix > preconditioner; -// preconditioner.initialize(A); -// -// ReductionControl solver_control (10, 1.e-30, 1.e-2); -// IterativeInverse< Vector > A_inv; -// A_inv.initialize(A,preconditioner); -// A_inv.solver.select("cg"); -// A_inv.solver.set_control(solver_control); -// -// const auto lo_A_inv = linear_operator(A_inv); -// const Vector x = lo_A_inv*b; -// } deallog.pop();