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

  1. // QLD.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_QLD_h)
  25. #define octave_QLD_h 1
  26.  
  27. class Matrix;
  28. class ColumnVector;
  29.  
  30. #include "QP.h"
  31.  
  32. extern "C++" {
  33.  
  34. #ifndef Vector
  35. #define Vector ColumnVector
  36. #endif
  37.  
  38. class QLD : public QP
  39. {
  40.  public:
  41.  
  42.   QLD (void) : QP ()
  43.     { set_default_options (); }
  44.  
  45.   QLD (const Vector& x, const Matrix& H) : QP (x, H)
  46.     { set_default_options (); }
  47.  
  48.   QLD (const Vector& x, const Matrix& H, const Vector& c) : QP (x, H, c)
  49.     { set_default_options (); }
  50.  
  51.   QLD (const Vector& x, const Matrix& H, const Bounds& b) : QP (x, H, b)
  52.     { set_default_options (); }
  53.  
  54.   QLD (const Vector& x, const Matrix& H, const LinConst& lc) : QP (x, H, lc)
  55.     { set_default_options (); }
  56.  
  57.   QLD (const Vector& x, const Matrix& H, const Vector& c, const Bounds& b)
  58.     : QP (x, H, c, b) { set_default_options (); }
  59.  
  60.   QLD (const Vector& x, const Matrix& H, const Vector& c, const LinConst& lc)
  61.     : QP (x, H, c, lc) { set_default_options (); }
  62.  
  63.   QLD (const Vector& x, const Matrix& H, const Bounds& b, const LinConst& lc)
  64.     : QP (x, H, b, lc) { set_default_options (); }
  65.  
  66.   QLD (const Vector& x, const Matrix& H, const Vector& c, const Bounds& b,
  67.       const LinConst& lc)
  68.     : QP (x, H, c, b, lc) { set_default_options (); }
  69.  
  70.   QLD (const QLD& a);
  71.  
  72.   QLD& operator = (const QLD& a);
  73.  
  74.   Vector minimize (double& objf, int& inform);
  75.  
  76. private:
  77.   void set_default_options (void);
  78.   int iprint;
  79. };
  80.  
  81. inline QLD::QLD (const QLD& a) : QP (a.x, a.H, a.c, a.bnds, a.lc)
  82.   { set_default_options (); }
  83.  
  84. inline QLD&
  85. QLD::operator = (const QLD& a)
  86. {
  87.   x = a.x;
  88.   H = a.H;
  89.   c = a.c;
  90.   bnds = a.bnds;
  91.   lc = a.lc;
  92.   iprint = a.iprint;
  93.   return *this;
  94. }
  95.  
  96. } // extern "C++"
  97.  
  98. #endif
  99.  
  100. /*
  101. ;;; Local Variables: ***
  102. ;;; mode: C++ ***
  103. ;;; page-delimiter: "^/\\*" ***
  104. ;;; End: ***
  105. */
  106.