example1.cpp
Go to the documentation of this file.
00001 /*
00002  *      This file is part of qpOASES.
00003  *
00004  *      qpOASES -- An Implementation of the Online Active Set Strategy.
00005  *      Copyright (C) 2007-2011 by Hans Joachim Ferreau, Andreas Potschka,
00006  *      Christian Kirches et al. All rights reserved.
00007  *
00008  *      qpOASES is free software; you can redistribute it and/or
00009  *      modify it under the terms of the GNU Lesser General Public
00010  *      License as published by the Free Software Foundation; either
00011  *      version 2.1 of the License, or (at your option) any later version.
00012  *
00013  *      qpOASES is distributed in the hope that it will be useful,
00014  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
00015  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
00016  *      See the GNU Lesser General Public License for more details.
00017  *
00018  *      You should have received a copy of the GNU Lesser General Public
00019  *      License along with qpOASES; if not, write to the Free Software
00020  *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
00021  *
00022  */
00023 
00024 
00036 #include <qpOASES.hpp>
00037 
00038 
00040 int main( )
00041 {
00042         USING_NAMESPACE_QPOASES
00043 
00044         /* Setup data of first QP. */
00045         real_t H[2*2] = { 1.0, 0.0, 0.0, 0.5 };
00046         real_t A[1*2] = { 1.0, 1.0 };
00047         real_t g[2] = { 1.5, 1.0 };
00048         real_t lb[2] = { 0.5, -2.0 };
00049         real_t ub[2] = { 5.0, 2.0 };
00050         real_t lbA[1] = { -1.0 };
00051         real_t ubA[1] = { 2.0 };
00052 
00053         /* Setup data of second QP. */
00054         real_t g_new[2] = { 1.0, 1.5 };
00055         real_t lb_new[2] = { 0.0, -1.0 };
00056         real_t ub_new[2] = { 5.0, -0.5 };
00057         real_t lbA_new[1] = { -2.0 };
00058         real_t ubA_new[1] = { 1.0 };
00059 
00060 
00061         /* Setting up QProblem object. */
00062         QProblem example( 2,1 );
00063 
00064         /* Solve first QP. */
00065         int nWSR = 10;
00066         example.init( H,g,A,lb,ub,lbA,ubA, nWSR,0 );
00067 
00068         /* Solve second QP. */
00069         nWSR = 10;
00070         example.hotstart( g_new,lb_new,ub_new,lbA_new,ubA_new, nWSR,0 );
00071 
00072         /* Get and print solution of second QP. */
00073         real_t xOpt[2];
00074         example.getPrimalSolution( xOpt );
00075         printf( "\nxOpt = [ %e, %e ];  objVal = %e\n\n", xOpt[0],xOpt[1],example.getObjVal() );
00076 
00077 //      getGlobalMessageHandler( )->listAllMessages( );
00078         example.printOptions();
00079         
00080         return 0;
00081 }
00082 
00083 
00084 /*
00085  *      end of file
00086  */


acado
Author(s): Milan Vukov, Rien Quirynen
autogenerated on Thu Aug 27 2015 11:58:09