improve encapsulation

This commit is contained in:
Arne Morten Kvarving 2022-10-20 13:09:21 +02:00 committed by Tong Dong Qiu
parent 9ce8d1ceca
commit 0e2f7649e2
2 changed files with 8 additions and 1 deletions

View File

@ -27,6 +27,8 @@
#include <opm/simulators/linalg/bda/rocalutionSolverBackend.hpp>
#include <rocalution.hpp>
namespace Opm
{
namespace Accelerator

View File

@ -24,7 +24,12 @@
#include <opm/simulators/linalg/bda/BdaSolver.hpp>
#include <opm/simulators/linalg/bda/WellContributions.hpp>
#include <rocalution.hpp>
namespace rocalution {
template<class Matrix, class Vector, class Scalar> class BiCGStab;
template<class Matrix, class Vector, class Scalar> class ILU;
template<class Scalar> class LocalMatrix;
template<class Scalar> class LocalVector;
}
namespace Opm
{