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.
16 lines
292 B
16 lines
292 B
#include "common.h"
|
|
|
|
#include "gspn/gspn.h"
|
|
#include "gspn/gspn_io.h"
|
|
|
|
PYBIND11_MODULE(gspn, m) {
|
|
m.doc() = "Support for GSPNs";
|
|
|
|
#ifdef STORMPY_DISABLE_SIGNATURE_DOC
|
|
py::options options;
|
|
options.disable_function_signatures();
|
|
#endif
|
|
|
|
define_gspn(m);
|
|
define_gspn_io(m);
|
|
}
|