example2.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 
00037 #include <qpOASES.hpp>
00038 
00039 
00041 int main( )
00042 {
00043         USING_NAMESPACE_QPOASES
00044 
00045         /* Setup data of first QP. */
00046         real_t H[2*2] = { 1.0, 0.0, 0.0, 0.5 };
00047         real_t A[1*2] = { 1.0, 1.0 };
00048         real_t g[2] = { 1.5, 1.0 };
00049         real_t lb[2] = { 0.5, -2.0 };
00050         real_t ub[2] = { 5.0, 2.0 };
00051         real_t lbA[1] = { -1.0 };
00052         real_t ubA[1] = { 2.0 };
00053 
00054         /* Setup data of second QP. */
00055         real_t H_new[2*2] = { 1.0, 0.5, 0.5, 0.5 };
00056         real_t A_new[1*2] = { 1.0, 5.0 };
00057         real_t g_new[2] = { 1.0, 1.5 };
00058         real_t lb_new[2] = { 0.0, -1.0 };
00059         real_t ub_new[2] = { 5.0, -0.5 };
00060         real_t lbA_new[1] = { -2.0 };
00061         real_t ubA_new[1] = { 1.0 };
00062 
00063 
00064         /* Setting up SQProblem object and solution analyser. */
00065         SQProblem example( 2,1 );
00066         SolutionAnalysis analyser;
00067 
00068         /* Solve first QP ... */
00069         int nWSR = 10;
00070         example.init( H,g,A,lb,ub,lbA,ubA, nWSR,0 );
00071 
00072         /* ... and analyse it. */
00073         real_t maxKKTviolation;
00074     analyser.getMaxKKTviolation( &example, maxKKTviolation );
00075     printf( "maxKKTviolation: %e\n", maxKKTviolation );
00076 
00077         /* Solve second QP ... */
00078         nWSR = 10;
00079         example.hotstart( H_new,g_new,A_new,lb_new,ub_new,lbA_new,ubA_new, nWSR,0 );
00080 
00081         /* ... and analyse it. */
00082         analyser.getMaxKKTviolation( &example, maxKKTviolation );
00083     printf( "maxKKTviolation: %e\n", maxKKTviolation );
00084 
00085 
00086 //  ------------ VARIANCE-COVARIANCE EVALUATION --------------------
00087 
00088         real_t *Var              = new real_t[5*5];
00089         real_t *Primal_Dual_Var  = new real_t[5*5];
00090 
00091         int run1, run2;
00092         for( run1 = 0; run1 < 5*5; run1++ )
00093             Var[run1] = 0.0;
00094 
00095         Var[0] = 1.0;
00096         Var[6] = 1.0;
00097 
00098 //                  (  1   0   0   0   0   )
00099 //                  (  0   1   0   0   0   )
00100 //     Var     =    (  0   0   0   0   0   )
00101 //                  (  0   0   0   0   0   )
00102 //                  (  0   0   0   0   0   )
00103 
00104 
00105         analyser.getVarianceCovariance( &example, Var,Primal_Dual_Var );
00106 
00107         printf("\nPrimal_Dual_VAR = \n");
00108         for( run1 = 0; run1 < 5; run1++ ){
00109           for( run2 = 0; run2 < 5; run2++ ){
00110             printf(" %10f", Primal_Dual_Var[run1*5+run2]);
00111           }
00112           printf("\n");
00113         }
00114 
00115         delete[] Primal_Dual_Var;
00116         delete[] Var;
00117 
00118         return 0;
00119 }
00120 
00121 
00122 /*
00123  *      end of file
00124  */


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