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.
 
 
 
 
 
 

24 lines
471 B

#include "common.h"
#include "core/core.h"
#include "core/modelchecking.h"
#include "core/bisimulation.h"
#include "core/input.h"
PYBIND11_PLUGIN(core) {
py::module m("core");
#ifdef STORMPY_DISABLE_SIGNATURE_DOC
py::options options;
options.disable_function_signatures();
#endif
define_core(m);
define_parse(m);
define_build(m);
define_modelchecking(m);
define_bisimulation(m);
define_input(m);
return m.ptr();
}