Skip to content

Commit

Permalink
add comma after nlconstr in PRIMAResult.__repr__
Browse files Browse the repository at this point in the history
  • Loading branch information
nbelakovski committed Apr 21, 2024
1 parent 0848c43 commit 585e9b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/_prima.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ struct PRIMAResult {
"fun=" + std::to_string(fun) + ", " +
"nfev=" + std::to_string(nfev) + ", " +
"maxcv=" + std::to_string(maxcv) + ", " +
"nlconstr=" + std::string(pybind11::repr(nlconstr)) +
"nlconstr=" + std::string(pybind11::repr(nlconstr)) + ", " +
"method=" + "\'" + method + "\'" + ")";
")";
return repr;
Expand Down

0 comments on commit 585e9b5

Please sign in to comment.