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
15 lines
191 B
C++
15 lines
191 B
C++
#include <config.h>
|
|
|
|
#include <opm/simulators/linalg/PreconditionerFactory_impl.hpp>
|
|
|
|
namespace Opm {
|
|
|
|
INSTANTIATE_PF(double,6)
|
|
|
|
#if FLOW_INSTANTIATE_FLOAT
|
|
INSTANTIATE_PF(float,6)
|
|
#endif
|
|
|
|
|
|
}
|