You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
435 B
11 lines
435 B
#include "shield_handling.h"
|
|
|
|
#include "storm/shields/ShieldHandling.h"
|
|
#include "storm/api/export.h"
|
|
|
|
template <typename ValueType, typename IndexType>
|
|
void define_shield_handling(py::module& m) {
|
|
m.def("export_shield", &storm::api::exportShield<ValueType, IndexType>, py::arg("model"), py::arg("shield"));
|
|
}
|
|
|
|
template void define_shield_handling<double, typename storm::storage::SparseMatrix<double>::index_type>(py::module& m);
|