We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
b
1 parent e0bb9ed commit 9b101b8Copy full SHA for 9b101b8
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 and 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