From: Timo Heister Date: Thu, 7 Jul 2016 14:08:35 +0000 (+0100) Subject: update PETSc error message X-Git-Tag: v8.5.0-rc1~916^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f020304d4f5d9db33c4ef7e1e806b26972cb92a;p=dealii.git update PETSc error message --- diff --git a/source/lac/petsc_precondition.cc b/source/lac/petsc_precondition.cc index 15991bc119..51162264de 100644 --- a/source/lac/petsc_precondition.cc +++ b/source/lac/petsc_precondition.cc @@ -520,7 +520,9 @@ namespace PETScWrappers ierr = PCSetFromOptions (pc); AssertThrow (ierr == 0, ExcPETScError(ierr)); #else - Assert(false, ExcMessage("Complex-valued PETSc does not support BoomerAMG preconditioner.")); + Assert (false, + ExcMessage ("Your PETSc installation does not include a copy of " + "the hypre package necessary for this preconditioner.")); #endif }