mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
SolutionContainers: optionally instantiate for float
This commit is contained in:
parent
58a930507a
commit
5a935ccfb5
@ -80,7 +80,14 @@ operator==(const MICPSolutionContainer<Scalar>& rhs) const
|
||||
this->calciteConcentration == rhs.calciteConcentration;
|
||||
}
|
||||
|
||||
template struct PolymerSolutionContainer<double>;
|
||||
template struct MICPSolutionContainer<double>;
|
||||
#define INSTANTIATE_TYPE(T) \
|
||||
template struct PolymerSolutionContainer<T>; \
|
||||
template struct MICPSolutionContainer<T>;
|
||||
|
||||
INSTANTIATE_TYPE(double)
|
||||
|
||||
#if FLOW_INSTANTIATE_FLOAT
|
||||
INSTANTIATE_TYPE(float)
|
||||
#endif
|
||||
|
||||
} // namespace Opm
|
||||
|
Loading…
Reference in New Issue
Block a user