#include "pre_shield.h" #include "storm/shields/PreShield.h" #include "storm/shields/AbstractShield.h" #include "storm/storage/Scheduler.h" #include "storm/storage/SchedulerChoice.h" #include "storm/storage/BitVector.h" #include "storm/storage/Distribution.h" template void define_pre_shield(py::module& m, std::string vt_suffix) { using PreShield = tempest::shields::PreShield; using AbstractShield = tempest::shields::AbstractShield; std::string shieldClassName = std::string("PreShield") + vt_suffix; py::class_>(m, shieldClassName.c_str()) .def("construct", &PreShield::construct, "Construct the shield") ; } template void define_pre_shield::index_type>(py::module& m, std::string vt_suffix); template void define_pre_shield::index_type>(py::module& m, std::string vt_suffix);