# HG changeset patch # User jwe # Date 753163159 0 # Node ID 83f77b41ff2f0f9f17266af996599c2e6ded3827 # Parent 6188aa8d1fecadf26a36311447bafb752a17a149 [project @ 1993-11-13 03:59:19 by jwe] diff -r 6188aa8d1fec -r 83f77b41ff2f src/qpsol.cc --- a/src/qpsol.cc Sat Nov 13 03:44:55 1993 +0000 +++ b/src/qpsol.cc Sat Nov 13 03:59:19 1993 +0000 @@ -79,8 +79,7 @@ Matrix H = args[2].to_matrix (); if (H.rows () != H.columns () || H.rows () != x.capacity ()) { - error ("qpsol: H must be a square matrix consistent with the\ - size of x"); + error ("qpsol: H must be a square matrix consistent with the size of x"); return retval; } @@ -101,8 +100,8 @@ int ub_len = ub.capacity (); if (lb_len != ub_len || lb_len != x.capacity ()) { - error ("qpsol: lower and upper bounds and decision variable\n\ - vector must all have the same number of elements"); + error ("qpsol: lower and upper bounds and decision variable vector"); + error ("must all have the same number of elements"); return retval; }