-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lu(Symmetric(Diagonal(...))) fails #922
Comments
Suggestion: Symmetric(D::Diagonal, uplo=:U) = D and the same for The downside is violating |
One would need to respect the array of arrays case: Symmetric(D::Diagonal, uplo=:U) = Diagonal(symmetric.(D.diag), uplo) Or pick up some of JuliaLang/julia#41288. |
I don't understand why JuliaLang/julia#41288 was closed in the first place. The issue is not explicitly why LU is useful for @andreasnoack, I would appreciate your thoughts on this. |
This has been fixed, perhaps in JuliaLang/julia#47107. The question is whether the resulting |
The text was updated successfully, but these errors were encountered: