# HG changeset patch # User Ben Abbott # Date 1314203081 14400 # Node ID c85ee092fa6d4f8a9be2fb0f21eab84614cc2531 # Parent 12df4a1546186fcb19f143402d1867462eaa7492 dMatrix.cc: Increase tolerance for tests which fail on MinGW. Tests were introduced by changeset f217edac2c71. diff -r 12df4a154618 -r c85ee092fa6d liboctave/dMatrix.cc --- a/liboctave/dMatrix.cc Tue Aug 23 20:58:54 2011 -0400 +++ b/liboctave/dMatrix.cc Wed Aug 24 12:24:41 2011 -0400 @@ -3118,10 +3118,10 @@ %! rv = randn(1,10); %! rvt = rv'; %!assert([M*cv,M*cv],M*[cv,cv],1e-14) -%!assert([M'*cv,M'*cv],M'*[cv,cv],3e-14) -%!assert([rv*M;rv*M],[rv;rv]*M,3e-14) -%!assert([rv*M';rv*M'],[rv;rv]*M',3e-14) -%!assert(2*rv*cv,[rv,rv]*[cv;cv],3e-14) +%!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) +%!assert(2*rv*cv,[rv,rv]*[cv;cv],1e-13) %!assert(M'\cv,Mt\cv,1e-14) %!assert(M'\rv',Mt\rvt,1e-14) */