Browse Source

Dont build so many models with float/rational functions

Former-commit-id: 692ab47afa
main
sjunges 10 years ago
parent
commit
be0eee21db
  1. 6
      src/models/sparse/Ctmc.cpp
  2. 8
      src/models/sparse/MarkovAutomaton.cpp
  3. 8
      src/models/sparse/StochasticTwoPlayerGame.cpp

6
src/models/sparse/Ctmc.cpp

@ -40,9 +40,9 @@ namespace storm {
template class Ctmc<double>; template class Ctmc<double>;
#ifdef STORM_HAVE_CARL //#ifdef STORM_HAVE_CARL
template class Ctmc<storm::RationalFunction>; // template class Ctmc<storm::RationalFunction>;
#endif //#endif
} // namespace sparse } // namespace sparse
} // namespace models } // namespace models

8
src/models/sparse/MarkovAutomaton.cpp

@ -218,11 +218,11 @@ namespace storm {
} }
template class MarkovAutomaton<double>; template class MarkovAutomaton<double>;
template class MarkovAutomaton<float>; // template class MarkovAutomaton<float>;
#ifdef STORM_HAVE_CARL //#ifdef STORM_HAVE_CARL
template class MarkovAutomaton<storm::RationalFunction>; // template class MarkovAutomaton<storm::RationalFunction>;
#endif //#endif
} // namespace sparse } // namespace sparse
} // namespace models } // namespace models

8
src/models/sparse/StochasticTwoPlayerGame.cpp

@ -32,11 +32,11 @@ namespace storm {
} }
template class StochasticTwoPlayerGame<double>; template class StochasticTwoPlayerGame<double>;
template class StochasticTwoPlayerGame<float>; // template class StochasticTwoPlayerGame<float>;
#ifdef STORM_HAVE_CARL //#ifdef STORM_HAVE_CARL
template class StochasticTwoPlayerGame<storm::RationalFunction>; // template class StochasticTwoPlayerGame<storm::RationalFunction>;
#endif //#endif
} // namespace sparse } // namespace sparse
} // namespace models } // namespace models
|||||||
100:0
Loading…
Cancel
Save