#include <iostream>
#include <visp3/core/vpConfig.h>
#ifdef VISP_HAVE_CPP11_COMPATIBILITY
#include <visp3/core/vpQuadProg.h>
#include <visp3/core/vpTime.h>
#include "qp_plot.h"
int main (int argc, char **argv)
{
const int n = 20;
const int m = 10;
const int p = 30;
const int o = 16;
#ifdef VISP_HAVE_DISPLAY
bool opt_display = true;
#endif
for (int i = 0; i < argc; i++) {
#ifdef VISP_HAVE_DISPLAY
if (std::string(argv[i]) == "-d")
opt_display = false;
else
#endif
if (std::string(argv[i]) == "-h") {
std::cout << "\nUsage: " << argv[0] << " [-d] [-h]" << std::endl;
std::cout << "\nOptions: \n"
#ifdef VISP_HAVE_DISPLAY
" -d \n"
" Disable the image display. This can be useful \n"
" for automatic tests using crontab under Unix or \n"
" using the task manager under Windows.\n"
"\n"
#endif
" -h\n"
" Print the help.\n"<< std::endl;
return EXIT_SUCCESS;
}
}
A = randM(m,n)*5;
b = randV(m)*5;
Q = randM(o,n)*5;
r = randV(o)*5;
C = randM(p,n)*5;
d = C*x;
for(int i = 0; i < p; ++i)
d[i] += (5.*rand())/RAND_MAX;
int total = 100;
double t_WS(0), t_noWS(0), t_ineq_WS(0), t_ineq_noWS(0);
const double eps = 1e-2;
#ifdef VISP_HAVE_DISPLAY
if (opt_display)
plot =
new QPlot(2, total, {
"only equalities",
"pre-solving",
"equalities + inequalities",
"pre-solving / warm start"});
#endif
for(int k = 0; k < total; ++k)
{
Q += eps * randM(o,n);
r += eps * randV(o);
C += eps * randM(p,n);
d += eps * randV(p);
x = 0;
#ifdef VISP_HAVE_DISPLAY
if (opt_display)
#endif
x = 0;
#ifdef VISP_HAVE_DISPLAY
if (opt_display)
#endif
x = 0;
#ifdef VISP_HAVE_DISPLAY
if (opt_display)
#endif
x = 0;
qp_ineq_WS.
solveQPi(Q, r, C, d, x,
true);
#ifdef VISP_HAVE_DISPLAY
if (opt_display)
#endif
}
std::cout.precision(3);
std::cout << "With only equality constraints\n";
std::cout << " pre-solving: t = " << t_WS << " ms (for 1 QP = " << t_WS/total << " ms)\n";
std::cout << " no pre-solving: t = " << t_noWS << " ms (for 1 QP = " << t_noWS/total << " ms)\n\n";
std::cout << "With inequality constraints\n";
std::cout << " Warm start: t = " << t_ineq_WS << " ms (for 1 QP = " << t_ineq_WS/total << " ms)\n";
std::cout << " No warm start: t = " << t_ineq_noWS << " ms (for 1 QP = " << t_ineq_noWS/total << " ms)" << std::endl;
#ifdef VISP_HAVE_DISPLAY
if (opt_display) {
delete plot;
}
#endif
}
#else
int main()
{
std::cout << "You did not build ViSP with C++11 compiler flag" << std::endl;
std::cout << "Tip:" << std::endl;
std::cout << "- Configure ViSP again using cmake -DUSE_CPP11=ON, and build again this example" << std::endl;
return EXIT_SUCCESS;
}
#endif