Browse Source

removed unused template instantiations

tempestpy_adaptions
Stefan Pranger 4 years ago
parent
commit
d1a39e48fe
  1. 3
      src/storm/shields/AbstractShield.cpp
  2. 3
      src/storm/shields/PreSafetyShield.cpp

3
src/storm/shields/AbstractShield.cpp

@ -21,9 +21,6 @@ namespace tempest {
// Explicitly instantiate appropriate
template class AbstractShield<double, typename storm::storage::SparseMatrix<double>::index_type>;
template class AbstractShield<float, typename storm::storage::SparseMatrix<float>::index_type>;
template class AbstractShield<int, typename storm::storage::SparseMatrix<int>::index_type>;
template class AbstractShield<storm::storage::sparse::state_type, typename storm::storage::SparseMatrix<storm::storage::sparse::state_type>::index_type>;
#ifdef STORM_HAVE_CARL
template class AbstractShield<storm::RationalNumber, typename storm::storage::SparseMatrix<storm::RationalNumber>::index_type>;
#endif

3
src/storm/shields/PreSafetyShield.cpp

@ -20,9 +20,6 @@ namespace tempest {
}
// Explicitly instantiate appropriate
template class PreSafetyShield<double, typename storm::storage::SparseMatrix<double>::index_type>;
template class PreSafetyShield<float, typename storm::storage::SparseMatrix<float>::index_type>;
template class PreSafetyShield<int, typename storm::storage::SparseMatrix<int>::index_type>;
template class PreSafetyShield<storm::storage::sparse::state_type, typename storm::storage::SparseMatrix<storm::storage::sparse::state_type>::index_type>;
#ifdef STORM_HAVE_CARL
template class PreSafetyShield<storm::RationalNumber, typename storm::storage::SparseMatrix<storm::RationalNumber>::index_type>;
#endif

Loading…
Cancel
Save