dragonpilot - 基於 openpilot 的開源駕駛輔助系統
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

251 lines
8.7 KiB

/*
* This file is part of ACADO Toolkit.
*
* ACADO Toolkit -- A Toolkit for Automatic Control and Dynamic Optimization.
* Copyright (C) 2008-2014 by Boris Houska, Hans Joachim Ferreau,
* Milan Vukov, Rien Quirynen, KU Leuven.
* Developed within the Optimization in Engineering Center (OPTEC)
* under supervision of Moritz Diehl. All rights reserved.
*
* ACADO Toolkit 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 3 of the License, or (at your option) any later version.
*
* ACADO Toolkit 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 ACADO Toolkit; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
/**
* \file include/acado/conic_solver/dense_qp_solver.hpp
* \author Boris Houska, Hans Joachim Ferreau
* \date 2010
*/
#ifndef ACADO_TOOLKIT_DENSE_QP_SOLVER_HPP
#define ACADO_TOOLKIT_DENSE_QP_SOLVER_HPP
#include <acado/nlp_solver/nlp_solver.hpp>
#include <acado/matrix_vector/matrix_vector.hpp>
#include <acado/conic_solver/dense_cp_solver.hpp>
BEGIN_NAMESPACE_ACADO
/**
* \brief Abstract base class for algorithms solving quadratic programs.
*
* \ingroup AlgorithmInterfaces
*
* The class DenseQPsolver provides an abstract base class for different
* algorithms for solving quadratic programming (QP) problems.
*
* \author Boris Houska, Hans Joachim Ferreau
*/
class DenseQPsolver : public DenseCPsolver
{
//
// PUBLIC MEMBER FUNCTIONS:
//
public:
/** Default constructor. */
DenseQPsolver( );
DenseQPsolver( UserInteraction* _userInteraction
);
/** Copy constructor (deep copy). */
DenseQPsolver( const DenseQPsolver& rhs );
/** Destructor. */
~DenseQPsolver( );
/** Assignment operator (deep copy). */
DenseQPsolver& operator=( const DenseQPsolver& rhs );
virtual DenseCPsolver* clone( ) const = 0;
virtual DenseQPsolver* cloneDenseQPsolver( ) const = 0;
/** Initializes QP object. \n
* \n
* \return SUCCESSFUL_RETURN \n
*/
virtual returnValue init( const DenseCP *cp );
/** Alternative way to initialize QP object. */
virtual returnValue init( uint nV, /**< Number of QP variables. */
uint nC /**< Number of QP constraints (without bounds). */
);
/** Solves the QP. */
virtual returnValue solve( DenseCP *cp_ );
/** Solves QP using at most <maxIter> iterations. */
virtual returnValue solve( double* H, /**< Hessian matrix of neighbouring QP to be solved. */
double* A, /**< Constraint matrix of neighbouring QP to be solved. */
double* g, /**< Gradient of neighbouring QP to be solved. */
double* lb, /**< Lower bounds of neighbouring QP to be solved. */
double* ub, /**< Upper bounds of neighbouring QP to be solved. */
double* lbA, /**< Lower constraints' bounds of neighbouring QP to be solved. */
double* ubA, /**< Upper constraints' bounds of neighbouring QP to be solved. */
uint maxIter /**< Maximum number of iterations. */
) = 0;
/** Solves QP using at most <maxIter> iterations. */
virtual returnValue solve( DMatrix *H, /**< Hessian matrix of neighbouring QP to be solved. */
DMatrix *A, /**< Constraint matrix of neighbouring QP to be solved. */
DVector *g, /**< Gradient of neighbouring QP to be solved. */
DVector *lb, /**< Lower bounds of neighbouring QP to be solved. */
DVector *ub, /**< Upper bounds of neighbouring QP to be solved. */
DVector *lbA, /**< Lower constraints' bounds of neighbouring QP to be solved. */
DVector *ubA, /**< Upper constraints' bounds of neighbouring QP to be solved. */
uint maxIter /**< Maximum number of iterations. */
) = 0;
/** Performs exactly one QP iteration. */
virtual returnValue step( double* H, /**< Hessian matrix of neighbouring QP to be solved. */
double* A, /**< Constraint matrix of neighbouring QP to be solved. */
double* g, /**< Gradient of neighbouring QP to be solved. */
double* lb, /**< Lower bounds of neighbouring QP to be solved. */
double* ub, /**< Upper bounds of neighbouring QP to be solved. */
double* lbA, /**< Lower constraints' bounds of neighbouring QP to be solved. */
double* ubA /**< Upper constraints' bounds of neighbouring QP to be solved. */
) = 0;
/** Performs exactly one QP iteration. */
virtual returnValue step( DMatrix *H, /**< Hessian matrix of neighbouring QP to be solved. */
DMatrix *A, /**< Constraint matrix of neighbouring QP to be solved. */
DVector *g, /**< Gradient of neighbouring QP to be solved. */
DVector *lb, /**< Lower bounds of neighbouring QP to be solved. */
DVector *ub, /**< Upper bounds of neighbouring QP to be solved. */
DVector *lbA, /**< Lower constraints' bounds of neighbouring QP to be solved. */
DVector *ubA /**< Upper constraints' bounds of neighbouring QP to be solved. */
) = 0;
/** Returns QP status.
* \return QP status */
inline QPStatus getStatus( ) const;
/** Returns if QP (or its relaxation) has been solved.
* \return BT_TRUE iff QP has been solved */
inline BooleanType isSolved( ) const;
/** Returns if QP has been found to be infeasible.
* \return BT_TRUE if QP is infeasible */
inline BooleanType isInfeasible( ) const;
/** Returns if QP has been found to be unbounded.
* \return BT_TRUE if QP is unbounded */
inline BooleanType isUnbounded( ) const;
/** Returns primal solution vector if QP has been solved.
* \return SUCCESSFUL_RETURN \n
* RET_QP_NOT_SOLVED */
virtual returnValue getPrimalSolution( DVector& xOpt /**< OUTPUT: primal solution vector. */
) const = 0;
/** Returns dual solution vector if QP has been solved.
* \return SUCCESSFUL_RETURN \n
* RET_QP_NOT_SOLVED */
virtual returnValue getDualSolution( DVector& yOpt /**< OUTPUT: dual solution vector. */
) const = 0;
/** Returns optimal objective function value.
* \return finite value: Optimal objective function value (QP has been solved) \n
+INFTY: QP has not been solved or is infeasible \n
-INFTY: QP is unbounded */
virtual double getObjVal( ) const = 0;
/** Returns number of iterations performed at last QP solution.
* \return Number of iterations performed at last QP solution */
virtual uint getNumberOfIterations( ) const;
virtual uint getNumberOfVariables( ) const = 0;
virtual uint getNumberOfConstraints( ) const = 0;
/** Returns a variance-covariance estimate if possible or an error message otherwise.
*
* \return SUCCESSFUL_RETURN
* RET_MEMBER_NOT_INITIALISED
*/
virtual returnValue getVarianceCovariance( DMatrix &var ) = 0;
/** Returns a variance-covariance estimate if possible or an error message otherwise.
*
* \return SUCCESSFUL_RETURN
* RET_MEMBER_NOT_INITIALISED
*/
virtual returnValue getVarianceCovariance( DMatrix &H, DMatrix &var ) = 0;
//
// PROTECTED MEMBER FUNCTIONS:
//
protected:
virtual returnValue setupLogging( );
/** Setups QP object.
* \return SUCCESSFUL_RETURN \n
* RET_QP_INIT_FAILED */
virtual returnValue setupQPobject( uint nV, /**< Number of QP variables. */
uint nC /**< Number of QP constraints (without bounds). */
) = 0;
virtual returnValue makeBoundsConsistent( DenseCP *cp
) const;
//
// DATA MEMBERS:
//
protected:
QPStatus qpStatus;
int numberOfSteps;
};
CLOSE_NAMESPACE_ACADO
#include <acado/conic_solver/dense_qp_solver.ipp>
#endif // ACADO_TOOLKIT_QP_SOLVER_HPP
/*
* end of file
*/