Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[eus_qpoases.cpp] options.setToReliable() #730

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions eus_qpoases/src/eus_qpoases.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ double* solve_qpoases_qp_common (double* ret,

QProblem example( state_len,inequality_len, (solve_lp ? HST_ZERO : HST_UNKNOWN));
Options options;
options.setToReliable();
options.printLevel = print_level;
example.setOptions( options );
/* Solve first QP/LP. */
Expand Down Expand Up @@ -131,6 +132,7 @@ double* solve_qpoases_qp_with_hotstart_common (double* ret,
}

Options options;
options.setToReliable();
options.printLevel = print_level;
example->setOptions( options );
int nWSR = 10000;
Expand Down Expand Up @@ -227,6 +229,7 @@ double* solve_qpoases_sqp_with_hotstart_common (double* ret,
}

Options options;
options.setToReliable();
options.printLevel = print_level;
example->setOptions( options );
int nWSR = 10000;
Expand Down