From: Wolfgang Bangerth Date: Fri, 17 Feb 2006 00:01:09 +0000 (+0000) Subject: a test that presently fails because minres is not equipped to deal with block systems X-Git-Tag: v8.0.0~12289 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=357bb75655dfa118456f508f7c46459fb4946759;p=dealii.git a test that presently fails because minres is not equipped to deal with block systems git-svn-id: https://svn.dealii.org/trunk@12393 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/lac/block_minres.cc b/tests/lac/block_minres.cc index ea0f9eafde..9262f11b9e 100644 --- a/tests/lac/block_minres.cc +++ b/tests/lac/block_minres.cc @@ -81,4 +81,6 @@ int main() SolverMinRes > minres (solver_control); minres.solve (block_A, b, a, PreconditionIdentity()); + + deallog << "OK" << std::endl; }