Skip to content

Commit 6d71989

Browse files
authored
Merge pull request #146 from jcarpent/devel
Fix default parameter values for compute_timings
2 parents efde7c8 + f0f31d3 commit 6d71989

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bindings/python/src/expose-solve.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ solveDenseQp(pybind11::module_ m)
7878
true,
7979
"executes the default preconditioner for reducing ill "
8080
"conditioning and speeding up the solver."),
81-
pybind11::arg_v("compute_timings", true, "compute solver's timings."),
81+
pybind11::arg_v("compute_timings", false, "compute solver's timings."),
8282
pybind11::arg_v("max_iter", nullopt, "maximum number of iteration."),
8383
pybind11::arg_v(
8484
"initial_guess",
@@ -137,7 +137,7 @@ solveSparseQp(pybind11::module_ m)
137137
true,
138138
"executes the default preconditioner for reducing ill "
139139
"conditioning and speeding up the solver."),
140-
pybind11::arg_v("compute_timings", true, "compute solver's timings."),
140+
pybind11::arg_v("compute_timings", false, "compute solver's timings."),
141141
pybind11::arg_v("max_iter", nullopt, "maximum number of iteration."),
142142
pybind11::arg_v("initial_guess",
143143
proxsuite::proxqp::InitialGuessStatus::

0 commit comments

Comments
 (0)