Skip to content

Commit 16c94cd

Browse files
Fix overload cast
1 parent 8760f58 commit 16c94cd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bindings/python/src/expose-solve.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ solveDenseQp(pybind11::module_ m)
4040
bool,
4141
optional<isize>,
4242
proxsuite::proxqp::InitialGuessStatus,
43-
bool>(&dense::solve<T>),
43+
bool,
44+
optional<T>,
45+
optional<T>>(&dense::solve<T>),
4446
"Function for solving a QP problem using PROXQP sparse backend directly "
4547
"without defining a QP object. It is possible to set up some of the solver "
4648
"parameters (warm start, initial guess option, proximal step sizes, "

0 commit comments

Comments
 (0)