# HG changeset patch # User Marco Caliari # Date 1523175175 -7200 # Node ID b8279dd836649140324ad143882e87a6f39ffd11 # Parent 57f150c4fe6dbe246643572141fa50c7e9263faa Turn off warning about sparse lu factorization in bicg BIST test (bug #53390). * bicg.m: Turn off warning when using a two-output sparse lu factorization. diff -r 57f150c4fe6d -r b8279dd83664 scripts/sparse/bicg.m --- a/scripts/sparse/bicg.m Sun Apr 08 16:47:57 2018 -0700 +++ b/scripts/sparse/bicg.m Sun Apr 08 10:12:55 2018 +0200 @@ -536,6 +536,7 @@ %!testif HAVE_UMFPACK %! A = sparse (toeplitz ([2, 1, 0, 0, 0], [2, -1, 0, 0, 0])); %! b = sum (A, 2); +%! warning ("off", "Octave:lu:sparse_input", "local"); %! [M1, M2] = lu (A + eye (5)); %! [x, flag] = bicg (A, b, [], 1, M1, M2); %! ## b has two columns!