Explorar el Código

Correction to EvalAddMany's binding

Dmitriy Suponitskiy hace 1 año
padre
commit
ef029ce996
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/lib/bindings.cpp

+ 1 - 1
src/lib/bindings.cpp

@@ -772,7 +772,7 @@ void bind_crypto_context(py::module &m)
             py::arg("towersLeft"))
             py::arg("towersLeft"))
         .def("EvalMultMany", &CryptoContextImpl<DCRTPoly>::EvalMultMany,
         .def("EvalMultMany", &CryptoContextImpl<DCRTPoly>::EvalMultMany,
             py::arg("ciphertextVec"))
             py::arg("ciphertextVec"))
-        .def("EvalAddMany", &CryptoContextImpl<DCRTPoly>::EvalAddManyInPlace,
+        .def("EvalAddMany", &CryptoContextImpl<DCRTPoly>::EvalAddMany,
             py::arg("ciphertextVec"))
             py::arg("ciphertextVec"))
         .def("EvalAddManyInPlace", &CryptoContextImpl<DCRTPoly>::EvalAddManyInPlace,
         .def("EvalAddManyInPlace", &CryptoContextImpl<DCRTPoly>::EvalAddManyInPlace,
             py::arg("ciphertextVec"))
             py::arg("ciphertextVec"))