Restore coding conventions.

Inadvertently lost in commit 064184b.
This commit is contained in:
Bård Skaflestad 2012-08-14 11:05:09 +02:00
parent 1f7ec7fa39
commit 7cad95c6c7

View File

@ -30,6 +30,7 @@
#if HAVE_DUNE_ISTL #if HAVE_DUNE_ISTL
#include <opm/core/linalg/LinearSolverIstl.hpp> #include <opm/core/linalg/LinearSolverIstl.hpp>
#endif #endif
#if HAVE_AGMG #if HAVE_AGMG
#include <opm/core/linalg/LinearSolverAGMG.hpp> #include <opm/core/linalg/LinearSolverAGMG.hpp>
#endif #endif
@ -73,12 +74,14 @@ namespace Opm
solver_.reset(new LinearSolverIstl(param)); solver_.reset(new LinearSolverIstl(param));
#endif #endif
} }
else if (ls == "agmg") {
else if (ls == "agmg") {
#if HAVE_AGMG #if HAVE_AGMG
solver_.reset(new LinearSolverAGMG(param)); solver_.reset(new LinearSolverAGMG(param));
#endif #endif
} }
else {
else {
THROW("Linear solver " << ls << " is unknown."); THROW("Linear solver " << ls << " is unknown.");
} }