17 lines
344 B
17 lines
344 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");
|
|
define_core(m);
|
|
define_parse(m);
|
|
define_build(m);
|
|
define_modelchecking(m);
|
|
define_bisimulation(m);
|
|
define_input(m);
|
|
return m.ptr();
|
|
}
|