changeset 1834:46ab6238fa79

[project @ 1996-02-03 07:12:52 by jwe]
author jwe
date Sat, 03 Feb 1996 07:12:52 +0000
parents 5cc18ea5c048
children 12a94a17509d
files liboctave/NPSOL.h
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/NPSOL.h
+++ b/liboctave/NPSOL.h
@@ -163,6 +163,15 @@
   NPSOL (const NPSOL& a)
     : NLP (a), NPSOL_options () { }
 
+  NPSOL& operator = (const NPSOL& a)
+    {
+      NLP::operator = (a);
+      NPSOL_options::operator = (a);
+      return *this;
+    }
+
+  ~NPSOL (void) { }
+
   ColumnVector do_minimize (double& objf, int& inform, ColumnVector& lambda);
 };