|
| 1 | +// |
| 2 | +// Created by kotaru on 5/26/21. |
| 3 | +// |
| 4 | +#include "quadprog/qpswift_eigen.h" |
| 5 | + |
| 6 | +namespace nonlinear_controls { |
| 7 | + |
| 8 | +QPSwiftEigen::QPSwiftEigen(const int &n, const int &m, const int &p) |
| 9 | + : QuadProg(n, m, p) {} |
| 10 | + |
| 11 | +int QPSwiftEigen::solve() { |
| 12 | + QP *myQP; |
| 13 | + |
| 14 | + // Setup Function // |
| 15 | + myQP = QP_SETUP_dense(this->nv, this->ni, this->ne, this->H.data(), |
| 16 | + this->Aeq.data(), this->A.data(), this->f.data(), |
| 17 | + this->b.data(), this->beq.data(), NULL); |
| 18 | + |
| 19 | + /**************************************** |
| 20 | + * After this, you can change the solver settings like this |
| 21 | + * myQP->options->maxit = 30 (to change the maximum number of |
| 22 | + iterations *to 30; default is 100) |
| 23 | + * |
| 24 | + * myQP->options->reltol = 1e-3 (to change the Relative tolerance to 1e-3; |
| 25 | + *default is 1e-6) |
| 26 | + * |
| 27 | + * myQP->options->abstol = 1e-3 (to change the Absolute |
| 28 | + *tolerance to 1e-3; default is 1e-6) |
| 29 | + * |
| 30 | + * myQP->options->SIGMA = 50 (to change the SIGMA to 50; default is 100; |
| 31 | + *recommended not to change this) |
| 32 | + * |
| 33 | + *myQP->options->VERBOSE = 0 (displays no output when set to 0; default |
| 34 | + is *1 which corresponds to complete verbose mode) |
| 35 | + ******************************************/ |
| 36 | + |
| 37 | + /* The Solution can be found as real pointer in myQP->x;It is an array of |
| 38 | + * Dimension n */ |
| 39 | + |
| 40 | + qp_int ExitCode = QP_SOLVE(myQP); |
| 41 | + |
| 42 | + std::cout << "Solution" << std::endl; |
| 43 | + |
| 44 | + for (int i = 0; i < 3; ++i) { |
| 45 | + this->xOpt(i) = myQP->x[i]; |
| 46 | + } |
| 47 | + std::cout << "xOpt: " << this->xOpt.transpose() << std::endl; |
| 48 | + |
| 49 | + QP_CLEANUP_dense(myQP); |
| 50 | + return 1; |
| 51 | +} |
| 52 | + |
| 53 | +} // namespace nonlinear_controls |
0 commit comments