changeset 13007:98719072ceae stable

dMatrix.cc: Increase tolerance for another test which fails on MinGW. Tests were introduced by changeset f217edac2c71.
author Ben Abbott <bpabbott@mac.com>
date Thu, 25 Aug 2011 07:53:48 -0400
parents c85ee092fa6d
children aaf6fbb2512f
files liboctave/dMatrix.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)