Skip to content

Commit

Permalink
[examples/python] minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ManifoldFR committed Aug 20, 2024
1 parent 315f4d3 commit 22d0d91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/python/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ def generate_mixed_qp(n, sparse=False, seed=1, reg=1e-2, dens1=0.075):
u = A @ v
l = -1.0e20 * np.ones(m)

return P, q, A[:n_eq, :], u[:n_eq], A[n_in:, :], u[n_in:], l[n_in:]
return P, q, A[:n_eq, :], u[:n_eq], A[n_eq:, :], u[n_eq:], l[n_eq:]

0 comments on commit 22d0d91

Please sign in to comment.