home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / liboctave / Objective.cc < prev    next >
C/C++ Source or Header  |  1996-09-28  |  2KB  |  94 lines

  1. // Objective.cc                                             -*- 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. #ifdef HAVE_CONFIG_H
  25. #include "config.h"
  26. #endif
  27.  
  28. #include "Objective.h"
  29.  
  30. Objective::Objective (void)
  31. {
  32.   phi = 0;
  33.   grad = 0;
  34. }
  35.  
  36. Objective::Objective (const objective_fcn obj)
  37. {
  38.   phi = obj;
  39.   grad = 0;
  40. }
  41.  
  42. Objective::Objective (const objective_fcn obj, const gradient_fcn g)
  43. {
  44.   phi = obj;
  45.   grad = g;
  46. }
  47.  
  48. Objective::Objective (const Objective& a)
  49. {
  50.   phi = a.phi;
  51.   grad = a.grad;
  52. }
  53.  
  54. Objective&
  55. Objective::operator = (const Objective& a)
  56. {
  57.   phi = a.phi;
  58.   grad = a.grad;
  59.   return *this;
  60. }
  61.  
  62. objective_fcn
  63. Objective::objective_function (void) const
  64. {
  65.   return phi;
  66. }
  67.  
  68. Objective&
  69. Objective::set_objective_function (const objective_fcn obj)
  70. {
  71.   phi = obj;
  72.   return *this;
  73. }
  74.  
  75. gradient_fcn
  76. Objective::gradient_function (void) const
  77. {
  78.   return grad;
  79. }
  80.  
  81. Objective&
  82. Objective::set_gradient_function (const gradient_fcn g)
  83. {
  84.   grad = g;
  85.   return *this;
  86. }
  87.  
  88. /*
  89. ;;; Local Variables: ***
  90. ;;; mode: C++ ***
  91. ;;; page-delimiter: "^/\\*" ***
  92. ;;; End: ***
  93. */
  94.