You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JuliaLang/julia#14389 by @timholy added support for rook-pivoted Bunch–Kaufman factorization, but it seems like the permutation (p or P) property should have been updated. As reported on discourse, it looks like the wrong permutation. For example:
gives false. The permutation B.p == [1,3,2], whereas it seems that the correct permuation is [2,1,3] in this case.
JuliaLang/julia#14389 did not change the _ipiv2perm_bk routine that computes the permutation from ipiv, but the documentation for sytrf_rook seems to indicate that its ipiv array has a different meaning than that of sytrf.
The text was updated successfully, but these errors were encountered:
JuliaLang/julia#14389 by @timholy added support for rook-pivoted Bunch–Kaufman factorization, but it seems like the permutation (
p
orP
) property should have been updated. As reported on discourse, it looks like the wrong permutation. For example:gives
false
. The permutationB.p == [1,3,2]
, whereas it seems that the correct permuation is[2,1,3]
in this case.JuliaLang/julia#14389 did not change the
_ipiv2perm_bk
routine that computes the permutation fromipiv
, but the documentation forsytrf_rook
seems to indicate that itsipiv
array has a different meaning than that ofsytrf
.The text was updated successfully, but these errors were encountered: