Browse Source

choice labelling: get labels for a choice

refactoring
Sebastian Junges 5 years ago
parent
commit
9bd59c6356
  1. 3
      src/storage/labeling.cpp

3
src/storage/labeling.cpp

@ -32,5 +32,6 @@ void define_labeling(py::module& m) {
;
py::class_<storm::models::sparse::ChoiceLabeling>(m, "ChoiceLabeling", "Labeling for choices", labeling);
py::class_<storm::models::sparse::ChoiceLabeling>(m, "ChoiceLabeling", "Labeling for choices", labeling).
def("get_labels_of_choice", &storm::models::sparse::ChoiceLabeling::getLabelsOfChoice, py::arg("choice"), "get labels of a choice");
}
Loading…
Cancel
Save