ソースを参照

Correction to EvalAddMany's binding

Dmitriy Suponitskiy 10 ヶ月 前
コミット
ef029ce996
1 ファイル変更1 行追加1 行削除
  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"))
         .def("EvalMultMany", &CryptoContextImpl<DCRTPoly>::EvalMultMany,
             py::arg("ciphertextVec"))
-        .def("EvalAddMany", &CryptoContextImpl<DCRTPoly>::EvalAddManyInPlace,
+        .def("EvalAddMany", &CryptoContextImpl<DCRTPoly>::EvalAddMany,
             py::arg("ciphertextVec"))
         .def("EvalAddManyInPlace", &CryptoContextImpl<DCRTPoly>::EvalAddManyInPlace,
             py::arg("ciphertextVec"))