changeset 32631:07affc3de044 stable

norm: Increase tolerance in test by 1*eps. * chol.cc: Increase tolerance in BIST by 1*eps to have it pass with musl libc. See: https://octave.discourse.group/t/test-suite-results-of-octave-9/5077
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 22 Dec 2023 17:04:47 +0100
parents 2f3202a895e8
children 2e484f9f1f18
files libinterp/corefcn/chol.cc
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/chol.cc	Wed Dec 20 08:09:04 2023 -0800
+++ b/libinterp/corefcn/chol.cc	Fri Dec 22 17:04:47 2023 +0100
@@ -774,7 +774,7 @@
 %!
 %! R1 = cholupdate (R1, uc, "-");
 %! assert (norm (triu (R1)-R1, Inf), 0);
-%! assert (norm (R1 - R, Inf), 0, 1e1*eps);
+%! assert (norm (R1 - R, Inf), 0, 11*eps);
 
 %!test
 %! R = chol (single (A));