Mercurial > hg > octave-nkf
changeset 213:83f77b41ff2f
[project @ 1993-11-13 03:59:19 by jwe]
author | jwe |
---|---|
date | Sat, 13 Nov 1993 03:59:19 +0000 |
parents | 6188aa8d1fec |
children | 1468a5e6a466 |
files | src/qpsol.cc |
diffstat | 1 files changed, 3 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/qpsol.cc +++ b/src/qpsol.cc @@ -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; }