changeset 2352:f06655937d8a

[project @ 1996-08-08 21:06:48 by jwe]
author jwe
date Thu, 08 Aug 1996 21:06:49 +0000
parents af7790a4bb19
children 383ce9cdcf31
files liboctave/ChangeLog liboctave/QPSOL.cc
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/ChangeLog	Wed Jul 31 02:53:10 1996 +0000
+++ b/liboctave/ChangeLog	Thu Aug 08 21:06:49 1996 +0000
@@ -1,3 +1,8 @@
+Thu Aug  8 16:04:17 1996  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* QPSOL.cc (QPSOL::do_minimize): Insert linear constraint bounds
+	starting at n, not 0.
+
 Sat Jul 27 02:54:44 1996  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* dMatrix.cc (Matrix::Matrix (const RowVector&),
--- a/liboctave/QPSOL.cc	Wed Jul 31 02:53:10 1996 +0000
+++ b/liboctave/QPSOL.cc	Thu Aug 08 21:06:49 1996 +0000
@@ -105,8 +105,8 @@
 
   if (nclin > 0)
     {
-      bl.insert (lc.lower_bounds (), 0);
-      bu.insert (lc.upper_bounds (), 0);
+      bl.insert (lc.lower_bounds (), n);
+      bu.insert (lc.upper_bounds (), n);
     }
 
   double *pbl = bl.fortran_vec ();