mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-14 04:01:55 -06:00
1cc27754d8
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,1)
|
|
|
|
#if FLOW_INSTANTIATE_FLOAT
|
|
INSTANTIATE_PF(float,1)
|
|
#endif
|
|
|
|
}
|