.def("add_variable",&storm::storage::sparse::StateValuationsBuilder::addVariable,py::arg("variable"),"Adds a new variable")
.def("add_state",&add_state,py::arg("state"),py::arg("boolean_values"),py::arg("integer_values"),py::arg("rational_values"),"Adds a new state, no more variables should be added afterwards")
.def("add_state",&add_state,py::arg("state"),py::arg("boolean_values")=std::vector<bool>(),py::arg("integer_values")=std::vector<int64_t>(),py::arg("rational_values")=std::vector<storm::RationalNumber>(),"Adds a new state, no more variables should be added afterwards")
.def("build",&storm::storage::sparse::StateValuationsBuilder::build,"Creates the finalized state valuations object")