m.def("_build_sparse_model_from_prism_program",&buildSparseModel<double>,"Build the model",py::arg("model_description"),py::arg("formulas")=std::vector<std::shared_ptr<storm::logic::Formulaconst>>(),py::arg("build_choice_labels")=false,py::arg("build_choice_origins")=false);
m.def("_build_sparse_parametric_model_from_prism_program",&buildSparseModel<storm::RationalFunction>,"Build the parametric model",py::arg("model_description"),py::arg("formulas"),py::arg("build_choice_labels")=false,py::arg("build_choice_origins")=false);
m.def("_build_sparse_model_from_prism_program",&buildSparseModel<double>,"Build the model",py::arg("model_description"),py::arg("formulas")=std::vector<std::shared_ptr<storm::logic::Formulaconst>>(),py::arg("use_jit")=false,py::arg("doctor")=false);
m.def("_build_sparse_parametric_model_from_prism_program",&buildSparseModel<storm::RationalFunction>,"Build the parametric model",py::arg("model_description"),py::arg("formulas")=std::vector<std::shared_ptr<storm::logic::Formulaconst>>(),py::arg("use_jit")=false,py::arg("doctor")=false);
m.def("_build_sparse_model_from_drn",&storm::api::buildExplicitDRNModel<double>,"Build the model from DRN",py::arg("file"));
m.def("_build_sparse_parametric_model_from_drn",&storm::api::buildExplicitDRNModel<storm::RationalFunction>,"Build the parametric model from DRN",py::arg("file"));
m.def("build_sparse_model_from_explicit",&storm::api::buildExplicitModel<double>,"Build the model model from explicit input",py::arg("transition_file"),py::arg("labeling_file"),py::arg("state_reward_file")="",py::arg("transition_reward_file")="",py::arg("choice_labeling_file")="");