ALQState: optionally instantiate for float

This commit is contained in:
Arne Morten Kvarving 2024-04-12 13:11:09 +02:00
parent a9cd51669d
commit d1f08e454a

View File

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