m.def("_build_model",&buildSparseModel<double>,"Build the model",py::arg("program"),py::arg("formula"));
m.def("_build_parametric_model",&buildSparseModel<storm::RationalFunction>,"Build the parametric model",py::arg("program"),py::arg("formula"));
m.def("build_model_from_prism_program",&storm::buildSparseModel<double>,"Build the model",py::arg("program"),py::arg("formulas")=std::vector<std::shared_ptr<storm::logic::Formulaconst>>());
m.def("build_parametric_model_from_prism_program",&storm::buildSparseModel<storm::RationalFunction>,"Build the parametric model",py::arg("program"),py::arg("formulas"));
m.def("_build_sparse_model_from_prism_program",&storm::buildSparseModel<double>,"Build the model",py::arg("program"),py::arg("formulas")=std::vector<std::shared_ptr<storm::logic::Formulaconst>>());
m.def("_build_sparse_parametric_model_from_prism_program",&storm::buildSparseModel<storm::RationalFunction>,"Build the parametric model",py::arg("program"),py::arg("formulas"));