octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #60101] symbfact crashes for dense matrices on


From: anonymous
Subject: [Octave-bug-tracker] [bug #60101] symbfact crashes for dense matrices on Windows
Date: Mon, 22 Feb 2021 19:41:40 -0500 (EST)
User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0

Follow-up Comment #2, bug #60101 (project octave):

Correction: Testing a bit more extensively with a simple script

while true
  n = randi([1,5]);
  A = sprand(n, n, max(0, min(1, randn)));
  A = A + A';
  col_counts_dense = symbfact(full(A));
  col_counts_sparse = symbfact(A);
  assert(all(col_counts_dense == col_counts_sparse));
end

shows the same issues on Linux. Sometimes the assertion fails, sometimes
Octave crashes.

Marcel

    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?60101>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]