mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
PreconditionerFactory: optionally instantiate for float these need to go in the same commit due to circular dependencies
14 lines
190 B
C++
14 lines
190 B
C++
#include <config.h>
|
|
|
|
#include <opm/simulators/linalg/PreconditionerFactory_impl.hpp>
|
|
|
|
namespace Opm {
|
|
|
|
INSTANTIATE_PF(double,5)
|
|
|
|
#if FLOW_INSTANTIATE_FLOAT
|
|
INSTANTIATE_PF(float,5)
|
|
#endif
|
|
|
|
}
|