# HG changeset patch # User Ben Abbott # Date 1314273228 14400 # Node ID 98719072ceaeece66d59260c861e4044286414ee # Parent c85ee092fa6d4f8a9be2fb0f21eab84614cc2531 dMatrix.cc: Increase tolerance for another test which fails on MinGW. Tests were introduced by changeset f217edac2c71. diff -r c85ee092fa6d -r 98719072ceae liboctave/dMatrix.cc --- a/liboctave/dMatrix.cc Wed Aug 24 12:24:41 2011 -0400 +++ b/liboctave/dMatrix.cc Thu Aug 25 07:53:48 2011 -0400 @@ -3117,7 +3117,7 @@ %! cv = randn(10,1); %! rv = randn(1,10); %! rvt = rv'; -%!assert([M*cv,M*cv],M*[cv,cv],1e-14) +%!assert([M*cv,M*cv],M*[cv,cv],1e-13) %!assert([M'*cv,M'*cv],M'*[cv,cv],1e-13) %!assert([rv*M;rv*M],[rv;rv]*M,1e-13) %!assert([rv*M';rv*M'],[rv;rv]*M',1e-13)