Skip to content

Commit 1dbaf7e

Browse files
author
gwiedebach
committed
Merge branch 'develop' into feature/BEAST-720_cleanup
2 parents 832d013 + 010238a commit 1dbaf7e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ConvexOptimizationAdapter/src/us/ihmc/convexOptimization/quadraticProgram/SimpleEfficientActiveSetQPSolver.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99

1010
/**
1111
* Solves a Quadratic Program using a simple active set method.
12-
* Does not work for problems where having multiple inequality constraints
13-
* in the active set make the problem infeasible. Seems to work well for
12+
* Does not work for problems where having multiple inequality constraints
13+
* in the active set make the problem infeasible. Seems to work well for
1414
* problems with benign inequality constraints, such as variable bounds.
15-
*
15+
*
1616
* Algorithm is very fast when it can find a solution.
17-
*
17+
*
1818
* Uses the algorithm and naming convention found in MIT Paper
1919
* "An efficiently solvable quadratic program for stabilizing dynamic locomotion"
2020
* by Scott Kuindersma, Frank Permenter, and Russ Tedrake.
21-
*
21+
*
2222
* @author JerryPratt
2323
*
2424
*/
@@ -99,7 +99,7 @@ public class SimpleEfficientActiveSetQPSolver implements SimpleActiveSetQPSolver
9999

100100
private final LinearSolver<DenseMatrix64F> solver = LinearSolverFactory.linear(0);
101101

102-
private boolean useWarmStart = true;
102+
private boolean useWarmStart = false;
103103

104104
private int previousNumberOfVariables = 0;
105105
private int previousNumberOfEqualityConstraints = 0;

0 commit comments

Comments
 (0)