Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
TLCFEM committed Sep 21, 2024
1 parent 39c4524 commit a15bac1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
*vpmr*.so
*.egg-info
__pycache__
.cache
.idea/
.venv
.vscode/
*.egg-info
*vpmr*.so
build/
cmake-build-*/
wheelhouse
__pycache__
venv
wheelhouse
2 changes: 1 addition & 1 deletion src/VPMR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ PYBIND11_MODULE(_pyvpmr, m) {

m.def(
"vpmr", &vpmr_wrapper, pybind11::call_guard<pybind11::gil_scoped_release>(),
pybind11::kw_only(), pybind11::arg("n") = 10, pybind11::arg("d") = 0, pybind11::arg("q") = 500, pybind11::arg("m") = 1.5, pybind11::arg("nc") = 4, pybind11::arg("e") = 1E-8, pybind11::arg("k") = "",
pybind11::kw_only(), pybind11::arg("n") = 10, pybind11::arg("d") = 0, pybind11::arg("q") = 500, pybind11::arg("m") = 1.5, pybind11::arg("nc") = 4, pybind11::arg("e") = 1E-8, pybind11::arg("k") = "exp(-t^2/4)",
"The VPMR Algorithm.\n\n"
":param n: number of terms (default: 10)\n"
":param d: number of precision bits (default: 512)\n"
Expand Down

0 comments on commit a15bac1

Please sign in to comment.