We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1948699 commit b56c1d9Copy full SHA for b56c1d9
test/packaging/src/run-proxqp.cpp
@@ -18,7 +18,7 @@ main()
18
dim, n_eq, n_in, sparsity_factor, strong_convexity_factor);
19
20
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
+ Qp.init(qp.H, qp.g, qp.A, qp.b, qp.C, qp.l, qp.u); // initialize the model
22
Qp.solve(); // solve the problem without warm start
23
24
auto x_wm = utils::rand::vector_rand<T>(dim);
0 commit comments