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.
19 lines
383 B
19 lines
383 B
#include "common.h"
|
|
|
|
#include "storage/bitvector.h"
|
|
#include "storage/model.h"
|
|
#include "storage/matrix.h"
|
|
|
|
PYBIND11_PLUGIN(storage) {
|
|
py::module m("storage");
|
|
|
|
#ifdef STORMPY_DISABLE_SIGNATURE_DOC
|
|
py::options options;
|
|
options.disable_function_signatures();
|
|
#endif
|
|
|
|
define_bitvector(m);
|
|
define_model(m);
|
|
define_sparse_matrix(m);
|
|
return m.ptr();
|
|
}
|