|
@ -6,12 +6,16 @@ |
|
|
#include "storm/storage/BitVector.h"
|
|
|
#include "storm/storage/BitVector.h"
|
|
|
#include "storm/storage/Distribution.h"
|
|
|
#include "storm/storage/Distribution.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "storm/api/export.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <typename ValueType, typename IndexType> |
|
|
template <typename ValueType, typename IndexType> |
|
|
void define_abstract_shield(py::module& m, std::string vt_suffix) { |
|
|
void define_abstract_shield(py::module& m, std::string vt_suffix) { |
|
|
using AbstractShield = tempest::shields::AbstractShield<ValueType, IndexType>; |
|
|
using AbstractShield = tempest::shields::AbstractShield<ValueType, IndexType>; |
|
|
std::string shieldClassName = std::string("AbstractShield") + vt_suffix; |
|
|
std::string shieldClassName = std::string("AbstractShield") + vt_suffix; |
|
|
|
|
|
|
|
|
py::class_<AbstractShield, std::shared_ptr<AbstractShield>>(m, shieldClassName.c_str()) |
|
|
|
|
|
|
|
|
py::class_<AbstractShield, std::shared_ptr<AbstractShield>> shield(m, shieldClassName.c_str()); |
|
|
|
|
|
shield |
|
|
.def("compute_row_group_size", &AbstractShield::computeRowGroupSizes) |
|
|
.def("compute_row_group_size", &AbstractShield::computeRowGroupSizes) |
|
|
.def("get_class_name", &AbstractShield::getClassName) |
|
|
.def("get_class_name", &AbstractShield::getClassName) |
|
|
.def("get_optimization_direction", &AbstractShield::getOptimizationDirection) |
|
|
.def("get_optimization_direction", &AbstractShield::getOptimizationDirection) |
|
|