#include <qpOASES.hpp>
#include <sys/time.h>
#include <cutest.h>
Go to the source code of this file.
Macros | |
#define | SOLVE_DENSE 0 /* Standard qpOASES, matrices passed dense */ |
#define | SOLVE_SCHUR 1 /* Schur complement qpOASES */ |
#define | SOLVE_SPARSE 0 /* Standard qpOASES, matrices passed sparse */ |
Functions | |
int | convertTripletToHbf (int m, int n, int nnz, double *vals, int *iRow, int *jCol, double *vals_hbf, int *iRow_hbf, int *jCol_hbf) |
int | main () |
Solve the CUTEst problem in prob/ subdirectory
Definition in file qpoasesCutest.cpp.
#define SOLVE_DENSE 0 /* Standard qpOASES, matrices passed dense */ |
Definition at line 35 of file qpoasesCutest.cpp.
#define SOLVE_SCHUR 1 /* Schur complement qpOASES */ |
Definition at line 37 of file qpoasesCutest.cpp.
#define SOLVE_SPARSE 0 /* Standard qpOASES, matrices passed sparse */ |
Definition at line 36 of file qpoasesCutest.cpp.
int convertTripletToHbf | ( | int | m, |
int | n, | ||
int | nnz, | ||
double * | vals, | ||
int * | iRow, | ||
int * | jCol, | ||
double * | vals_hbf, | ||
int * | iRow_hbf, | ||
int * | jCol_hbf | ||
) |
Definition at line 48 of file qpoasesCutest.cpp.
int main | ( | void | ) |
Definition at line 97 of file qpoasesCutest.cpp.