changeset 1833:5cc18ea5c048

[project @ 1996-02-03 07:03:28 by jwe]
author jwe
date Sat, 03 Feb 1996 07:03:28 +0000
parents 0c0d14cc90cd
children 46ab6238fa79
files liboctave/NPSOL.h
diffstat 1 files changed, 19 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/NPSOL.h
+++ b/liboctave/NPSOL.h
@@ -128,39 +128,42 @@
 {
  public:
 
-  NPSOL (void) : NLP () { }
+  NPSOL (void)
+    : NLP (), NPSOL_options () { }
 
-  NPSOL (const ColumnVector& x, const Objective& phi) : NLP (x, phi) { }
+  NPSOL (const ColumnVector& x, const Objective& phi)
+    : NLP (x, phi), NPSOL_options () { }
 
-  NPSOL (const ColumnVector& x, const Objective& phi,
-	 const Bounds& b) : NLP (x, phi, b) { }
+  NPSOL (const ColumnVector& x, const Objective& phi, const Bounds& b)
+    : NLP (x, phi, b), NPSOL_options () { }
 
   NPSOL (const ColumnVector& x, const Objective& phi, const Bounds& b,
-	 const LinConst& lc) : NLP (x, phi, b, lc) { }
+	 const LinConst& lc)
+    : NLP (x, phi, b, lc), NPSOL_options () { }
 
   NPSOL (const ColumnVector& x, const Objective& phi, const Bounds& b,
 	 const LinConst& lc, const NLConst& nlc)
-    : NLP (x, phi, b, lc, nlc) { }
+    : NLP (x, phi, b, lc, nlc), NPSOL_options () { }
 
-  NPSOL (const ColumnVector& x, const Objective& phi,
-	 const LinConst& lc) : NLP (x, phi, lc) { }
+  NPSOL (const ColumnVector& x, const Objective& phi, const LinConst& lc)
+    : NLP (x, phi, lc), NPSOL_options () { }
 
   NPSOL (const ColumnVector& x, const Objective& phi, const LinConst& lc,
-	 const NLConst& nlc) : NLP (x, phi, lc, nlc) { }
+	 const NLConst& nlc)
+    : NLP (x, phi, lc, nlc), NPSOL_options () { }
 
   NPSOL (const ColumnVector& x, const Objective& phi,
-	 const NLConst& nlc) : NLP (x, phi, nlc) { }
+	 const NLConst& nlc)
+    : NLP (x, phi, nlc), NPSOL_options () { }
 
   NPSOL (const ColumnVector& x, const Objective& phi, const Bounds& b,
-	 const NLConst& nlc) : NLP (x, phi, b, nlc) { }
+	 const NLConst& nlc)
+    : NLP (x, phi, b, nlc), NPSOL_options () { }
 
-  NPSOL (const NPSOL& a) : NLP (a.x, a.phi, a.bnds, a.lc, a.nlc) { }
+  NPSOL (const NPSOL& a)
+    : NLP (a), NPSOL_options () { }
 
   ColumnVector do_minimize (double& objf, int& inform, ColumnVector& lambda);
-
-  NPSOL& option (char *s);
-
- private:
 };
 
 // XXX FIXME XXX -- would be nice to not have to have this global