Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00035 #include <qpOASES.hpp>
00036
00037
00039 int main( )
00040 {
00041 USING_NAMESPACE_QPOASES
00042
00043
00044 real_t H[2*2] = { 1.0, 0.0, 0.0, 0.5 };
00045 real_t g[2] = { 1.5, 1.0 };
00046 real_t lb[2] = { 0.5, -2.0 };
00047 real_t ub[2] = { 5.0, 2.0 };
00048
00049
00050 real_t g_new[2] = { 1.0, 1.5 };
00051 real_t lb_new[2] = { 0.0, -1.0 };
00052 real_t ub_new[2] = { 5.0, -0.5 };
00053
00054
00055
00056 QProblemB example( 2 );
00057
00058 Options options;
00059 options.enableFlippingBounds = BT_FALSE;
00060 options.initialStatusBounds = ST_INACTIVE;
00061 options.numRefinementSteps = 1;
00062 example.setOptions( options );
00063
00064
00065 int nWSR = 10;
00066 example.init( H,g,lb,ub, nWSR,0 );
00067
00068
00069
00070 nWSR = 10;
00071 example.hotstart( g_new,lb_new,ub_new, nWSR,0 );
00072
00073
00074
00075 real_t xOpt[2];
00076 example.getPrimalSolution( xOpt );
00077 printf( "\nxOpt = [ %e, %e ]; objVal = %e\n\n", xOpt[0],xOpt[1],example.getObjVal() );
00078
00079 return 0;
00080 }
00081
00082
00083
00084
00085