home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-bin.lha / include / octave / QP.h < prev    next >
C/C++ Source or Header  |  1996-10-12  |  2KB  |  87 lines

  1. // QP.h                                                -*- C++ -*-
  2. /*
  3.  
  4. Copyright (C) 1992, 1993, 1994, 1995 John W. Eaton
  5.  
  6. This file is part of Octave.
  7.  
  8. Octave is free software; you can redistribute it and/or modify it
  9. under the terms of the GNU General Public License as published by the
  10. Free Software Foundation; either version 2, or (at your option) any
  11. later version.
  12.  
  13. Octave is distributed in the hope that it will be useful, but WITHOUT
  14. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with Octave; see the file COPYING.  If not, write to the Free
  20. Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. */
  23.  
  24. #if !defined (octave_QP_h)
  25. #define octave_QP_h 1
  26.  
  27. #include "dMatrix.h"
  28. #include "dColVector.h"
  29. #include "Bounds.h"
  30. #include "LinConst.h"
  31.  
  32. extern "C++" {
  33.  
  34. #ifndef Vector
  35. #define Vector ColumnVector
  36. #endif
  37.  
  38. class QP
  39. {
  40.  public:
  41.  
  42.   QP (void);
  43.   QP (const Vector& x, const Matrix& H);
  44.   QP (const Vector& x, const Matrix& H, const Vector& c);
  45.   QP (const Vector& x, const Matrix& H, const Bounds& b);
  46.   QP (const Vector& x, const Matrix& H, const LinConst& lc);
  47.   QP (const Vector& x, const Matrix& H, const Vector& c, const Bounds& b);
  48.   QP (const Vector& x, const Matrix& H, const Vector& c, const LinConst& lc);
  49.   QP (const Vector& x, const Matrix& H, const Bounds& b, const LinConst& lc);
  50.   QP (const Vector& x, const Matrix& H, const Vector& c, const Bounds& b,
  51.       const LinConst& lc);
  52.  
  53.   virtual Vector minimize (void);
  54.   virtual Vector minimize (double& objf);
  55.   virtual Vector minimize (double& objf, int& inform);
  56.   virtual Vector minimize (double& objf, int& inform, Vector& lambda) = 0;
  57.  
  58.   virtual Vector minimize (const Vector& x);
  59.   virtual Vector minimize (const Vector& x, double& objf);
  60.   virtual Vector minimize (const Vector& x, double& objf, int& inform);
  61.   virtual Vector minimize (const Vector& x, double& objf, int& inform,
  62.                Vector& lambda);
  63.  
  64.  protected:
  65.  
  66.   Vector x;
  67.   Matrix H;  
  68.   Vector c;
  69.   Bounds bnds;
  70.   LinConst lc;
  71.  
  72.  private:
  73.  
  74.   Matrix make_h_symmetric (void);
  75. };
  76.  
  77. } // extern "C++"
  78.  
  79. #endif
  80.  
  81. /*
  82. ;;; Local Variables: ***
  83. ;;; mode: C++ ***
  84. ;;; page-delimiter: "^/\\*" ***
  85. ;;; End: ***
  86. */
  87.