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

  1. // Objective.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_Objective_h)
  25. #define octave_Objective_h 1
  26.  
  27. #include "dColVector.h"
  28.  
  29. extern "C++" {
  30.  
  31. #ifndef Vector
  32. #define Vector ColumnVector
  33. #endif
  34.  
  35. typedef double (*objective_fcn) (const Vector&);
  36. typedef Vector (*gradient_fcn) (const Vector&);
  37.  
  38. class Objective
  39. {
  40.  public:
  41.  
  42.   Objective (void);
  43.   Objective (const objective_fcn);
  44.   Objective (const objective_fcn, const gradient_fcn);
  45.  
  46.   Objective (const Objective& a);
  47.  
  48.   Objective& operator = (const Objective& a);
  49.  
  50.   objective_fcn objective_function (void) const;
  51.  
  52.   Objective& set_objective_function (const objective_fcn);
  53.  
  54.   gradient_fcn gradient_function (void) const;
  55.  
  56.   Objective& set_gradient_function (const gradient_fcn);
  57.  
  58.  private:
  59.  
  60.   objective_fcn phi;
  61.   gradient_fcn grad;
  62.  
  63. };
  64.  
  65. } // extern "C++"
  66.  
  67. #endif
  68.  
  69. /*
  70. ;;; Local Variables: ***
  71. ;;; mode: C++ ***
  72. ;;; page-delimiter: "^/\\*" ***
  73. ;;; End: ***
  74. */
  75.