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.
|
|
#include "common.h"
#include "helpers.h"
#include <src/utility/storm-version.h>
PYBIND11_PLUGIN(info) { py::module m("stormpy.info", "Storm information"); py::class_<storm::utility::StormVersion>(m, "Version", "Version information for Storm") .def("short", &storm::utility::StormVersion::shortVersionString, "Storm version in short representation") .def("long", &storm::utility::StormVersion::longVersionString, "Storm version in long representation") .def("build_info", &storm::utility::StormVersion::buildInfo, "Build info for Storm") ; return m.ptr(); }
|