SingleWellState: optionally instantiate for float

This commit is contained in:
Arne Morten Kvarving 2024-04-12 13:11:09 +02:00
parent 8ddd898666
commit 5b4c40c922

View File

@ -360,4 +360,8 @@ bool SingleWellState<Scalar>::operator==(const SingleWellState& rhs) const
template class SingleWellState<double>;
#if FLOW_INSTANTIATE_FLOAT
template class SingleWellState<float>;
#endif
}