|
@ -4,7 +4,7 @@ |
|
|
#include <src/utility/storm-version.h>
|
|
|
#include <src/utility/storm-version.h>
|
|
|
|
|
|
|
|
|
PYBIND11_PLUGIN(info) { |
|
|
PYBIND11_PLUGIN(info) { |
|
|
py::module m("stormpy.info", "Storm information"); |
|
|
|
|
|
|
|
|
py::module m("info", "Storm information"); |
|
|
py::class_<storm::utility::StormVersion>(m, "Version", "Version information for Storm") |
|
|
py::class_<storm::utility::StormVersion>(m, "Version", "Version information for Storm") |
|
|
.def("short", &storm::utility::StormVersion::shortVersionString, "Storm version in short representation") |
|
|
.def("short", &storm::utility::StormVersion::shortVersionString, "Storm version in short representation") |
|
|
.def("long", &storm::utility::StormVersion::longVersionString, "Storm version in long representation") |
|
|
.def("long", &storm::utility::StormVersion::longVersionString, "Storm version in long representation") |
|
|