diff --git a/CMakeLists.txt b/CMakeLists.txt index 55b0c28..6d363a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project (OpenFHE-Python) set(OPENFHE_PYTHON_VERSION_MAJOR 0) set(OPENFHE_PYTHON_VERSION_MINOR 8) -set(OPENFHE_PYTHON_VERSION_PATCH 3) +set(OPENFHE_PYTHON_VERSION_PATCH 4) set(OPENFHE_PYTHON_VERSION ${OPENFHE_PYTHON_VERSION_MAJOR}.${OPENFHE_PYTHON_VERSION_MINOR}.${OPENFHE_PYTHON_VERSION_PATCH}) set(CMAKE_CXX_STANDARD 17) diff --git a/src/lib/bindings.cpp b/src/lib/bindings.cpp index a717220..15ba450 100644 --- a/src/lib/bindings.cpp +++ b/src/lib/bindings.cpp @@ -584,7 +584,8 @@ void bind_crypto_context(py::module &m) py::arg("levelBudget") = std::vector({5, 4}), py::arg("dim1") = std::vector({0, 0}), py::arg("slots") = 0, - py::arg("correctionFactor") = 0) + py::arg("correctionFactor") = 0, + py::arg("precompute")= true) .def("EvalBootstrapKeyGen", &CryptoContextImpl::EvalBootstrapKeyGen, cc_EvalBootstrapKeyGen_docs, py::arg("privateKey"), @@ -1155,4 +1156,4 @@ PYBIND11_MODULE(openfhe, m) bind_serialization(m); bind_schemes(m); -} \ No newline at end of file +}