Skip to content

Commit

Permalink
[eus_qpoases/src/eus_qpoases.cpp] change nWSR for large size QP probl…
Browse files Browse the repository at this point in the history
…em: 1000 -> 10000
  • Loading branch information
mmurooka committed Feb 7, 2019
1 parent e0ac222 commit 2e636bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eus_qpoases/src/eus_qpoases.cpp
Expand Up @@ -51,7 +51,7 @@ double* solve_qpoases_qp_common (double* ret,
options.printLevel = print_level;
example.setOptions( options );
/* Solve first QP/LP. */
int nWSR = 1000;
int nWSR = 10000;
returnValue status = example.init( H,g,A,lb,ub,lbA,ubA, nWSR );
//printf("%d %d %d\n", print_level, PL_NONE, PL_MEDIUM);
ret_status[0] = getSimpleStatus(status, (print_level != PL_NONE)? BT_TRUE:BT_FALSE);
Expand Down Expand Up @@ -133,7 +133,7 @@ double* solve_qpoases_qp_with_hotstart_common (double* ret,
Options options;
options.printLevel = print_level;
example->setOptions( options );
int nWSR = 1000;
int nWSR = 10000;
returnValue status;
if (is_initial) {
/* Solve first QP/LP. */
Expand Down Expand Up @@ -229,7 +229,7 @@ double* solve_qpoases_sqp_with_hotstart_common (double* ret,
Options options;
options.printLevel = print_level;
example->setOptions( options );
int nWSR = 1000;
int nWSR = 10000;
returnValue status;
if (is_initial) {
/* Solve first QP/LP. */
Expand Down

0 comments on commit 2e636bc

Please sign in to comment.