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.
13 lines
299 B
13 lines
299 B
|
|
#include "common.h"
|
|
#include "pomdp/transformations.h"
|
|
|
|
PYBIND11_MODULE(pomdp, m) {
|
|
m.doc() = "Functionality for POMDP analysis";
|
|
|
|
#ifdef STORMPY_DISABLE_SIGNATURE_DOC
|
|
py::options options;
|
|
options.disable_function_signatures();
|
|
#endif
|
|
define_transformations<double>(m, "Double");
|
|
}
|