Skip to content

Commit b56c1d9

Browse files
committed
test: fix ordering
1 parent 1948699 commit b56c1d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/packaging/src/run-proxqp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ main()
1818
dim, n_eq, n_in, sparsity_factor, strong_convexity_factor);
1919

2020
dense::QP<T> Qp(dim, n_eq, n_in); // create the QP object
21-
Qp.init(qp.H, qp.g, qp.A, qp.b, qp.C, qp.u, qp.l); // initialize the model
21+
Qp.init(qp.H, qp.g, qp.A, qp.b, qp.C, qp.l, qp.u); // initialize the model
2222
Qp.solve(); // solve the problem without warm start
2323

2424
auto x_wm = utils::rand::vector_rand<T>(dim);

0 commit comments

Comments
 (0)