91 lines
2.4 KiB
C++
91 lines
2.4 KiB
C++
|
/*
|
||
|
* This file is part of qpOASES.
|
||
|
*
|
||
|
* qpOASES -- An Implementation of the Online Active Set Strategy.
|
||
|
* Copyright (C) 2007-2017 by Hans Joachim Ferreau, Andreas Potschka,
|
||
|
* Christian Kirches et al. All rights reserved.
|
||
|
*
|
||
|
* qpOASES is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2.1 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* qpOASES is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||
|
* See the GNU Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with qpOASES; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* \file examples/example1b.cpp
|
||
|
* \author Hans Joachim Ferreau
|
||
|
* \version 3.2
|
||
|
* \date 2007-2017
|
||
|
*
|
||
|
* Very simple example for testing qpOASES using the QProblemB class.
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include <qpOASES.hpp>
|
||
|
|
||
|
|
||
|
/** Example for qpOASES main function using the QProblemB class. */
|
||
|
int main( )
|
||
|
{
|
||
|
USING_NAMESPACE_QPOASES
|
||
|
|
||
|
/* Setup data of first QP. */
|
||
|
real_t H[2*2] = { 1.0, 0.0, 0.0, 0.5 };
|
||
|
real_t g[2] = { 1.5, 1.0 };
|
||
|
real_t lb[2] = { 0.5, -2.0 };
|
||
|
real_t ub[2] = { 5.0, 2.0 };
|
||
|
|
||
|
/* Setup data of second QP. */
|
||
|
real_t g_new[2] = { 1.0, 1.5 };
|
||
|
real_t lb_new[2] = { 0.0, -1.0 };
|
||
|
real_t ub_new[2] = { 5.0, -0.5 };
|
||
|
|
||
|
|
||
|
/* Setting up QProblemB object. */
|
||
|
QProblemB example( 2 );
|
||
|
|
||
|
Options options;
|
||
|
//options.enableFlippingBounds = BT_FALSE;
|
||
|
options.initialStatusBounds = ST_INACTIVE;
|
||
|
options.numRefinementSteps = 1;
|
||
|
options.enableCholeskyRefactorisation = 1;
|
||
|
example.setOptions( options );
|
||
|
|
||
|
|
||
|
/* Solve first QP. */
|
||
|
int_t nWSR = 10;
|
||
|
example.init( H,g,lb,ub, nWSR,0 );
|
||
|
|
||
|
/* Get and print solution of first QP. */
|
||
|
real_t xOpt[2];
|
||
|
example.getPrimalSolution( xOpt );
|
||
|
printf( "\nxOpt = [ %e, %e ]; objVal = %e\n\n", xOpt[0],xOpt[1],example.getObjVal() );
|
||
|
|
||
|
/* Solve second QP. */
|
||
|
nWSR = 10;
|
||
|
example.hotstart( g_new,lb_new,ub_new, nWSR,0 );
|
||
|
// printf( "\nnWSR = %d\n\n", nWSR );
|
||
|
|
||
|
/* Get and print solution of second QP. */
|
||
|
example.getPrimalSolution( xOpt );
|
||
|
printf( "\nxOpt = [ %e, %e ]; objVal = %e\n\n", xOpt[0],xOpt[1],example.getObjVal() );
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
* end of file
|
||
|
*/
|