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 08f29ea commit 6806f7cCopy full SHA for 6806f7c
unittest/eiquadprog-basic.cpp
@@ -231,8 +231,8 @@ BOOST_AUTO_TEST_CASE ( test_full )
231
232
// min ||x||^2
233
// s.t.
234
-// x[0] = -1
235
// x[0] = 1
+// x[0] = -1
236
// DOES NOT WORK!
237
238
BOOST_AUTO_TEST_CASE ( test_unfeasible_equalities )
@@ -405,10 +405,10 @@ BOOST_AUTO_TEST_CASE ( test_nonconvex )
405
Aineq(1,3) = -1.;
406
407
Eigen::VectorXd Bineq(4);
408
- Bineq(0) = 0.;
409
- Bineq(1) = -1.;
410
- Bineq(2) = 0.;
411
- Bineq(3) = -1.;
+ Bineq(0) = 0.;
+ Bineq(1) = 1.;
+ Bineq(2) = 0.;
+ Bineq(3) = 1.;
412
413
Eigen::VectorXd x(2);
414
Eigen::VectorXi activeSet(4);
0 commit comments