#include "OrderDFTElementsById.h" #include "storm-dft/storage/dft/DFTElements.h" namespace storm { namespace storage { template bool OrderElementsById::operator()(std::shared_ptr> const& a , std::shared_ptr> const& b) const { return a->id() < b->id(); } template bool OrderElementsById::operator ()(const std::shared_ptr>& a, const std::shared_ptr>& b) const { return a->id() < b->id(); } template bool OrderElementsByRank::operator ()(const std::shared_ptr>& a, const std::shared_ptr>& b) const { return a->rank() < b->rank(); } // Explicitly instantiate the class. template struct OrderElementsById; template struct OrderElementsByRank; #ifdef STORM_HAVE_CARL template struct OrderElementsById; template struct OrderElementsByRank; #endif } }