We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac9601e commit e0bb9edCopy full SHA for e0bb9ed
1 file changed
dqrobotics/solvers/_dq_quadprog_solver.py
@@ -64,7 +64,7 @@ def solve_quadratic_program(self, H, f, A, b, Aeq, beq):
64
"""
65
A_internal = A if A is not None else Aeq
66
b_internal = b if b is not None else beq
67
- if A is not None and B is not None Aeq is not None and beq is not None:
+ if A is not None and B is not None and Aeq is not None and beq is not None:
68
if Aeq.shape == (0, 0) or beq.shape == 0:
69
pass
70
else:
0 commit comments