From 3e2cdfb7bef03705edd1c6a4d72d272938e768a5 Mon Sep 17 00:00:00 2001 From: Martin Beck <martin.beck@iws.uni-stuttgart.de> Date: Tue, 20 May 2014 11:47:32 +0000 Subject: [PATCH] [el1p2c] Optional use of dune-pdelab + amg or SuperLU, now working if only one option is available, and message if both are missing. Reviewed by alexk. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12851 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- test/geomechanics/el1p2c/test_el1p2c.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/geomechanics/el1p2c/test_el1p2c.cc b/test/geomechanics/el1p2c/test_el1p2c.cc index 5994ef3438..aa414031ae 100644 --- a/test/geomechanics/el1p2c/test_el1p2c.cc +++ b/test/geomechanics/el1p2c/test_el1p2c.cc @@ -66,8 +66,8 @@ void usage(const char *progName, const std::string &errorMsg) int main(int argc, char** argv) { -#if !DUNE_PDELAB_IS_PATCHED_FOR_DUMUX && !#HAVE_SUPERLU - std::cerr << "If you have either a patched dune-pdelab or SuperLU to run this test.\n" << std::endl; +#if !DUNE_PDELAB_IS_PATCHED_FOR_DUMUX && !HAVE_SUPERLU + std::cerr << "You need to have either a patched dune-pdelab or SuperLU to run this test.\n" << std::endl; return 77; #else Dune::FMatrixPrecision<>::set_singular_limit(1e-22); -- GitLab