-
-
Notifications
You must be signed in to change notification settings - Fork 11
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
inverse of matrices over arbitrary fields stopped working in julia1.5.0-beta1 #734
Comments
In JuliaLang/julia#34575 we changed the LU to call |
I vote for just removing the call to |
Edit: probably not, that wouldn’t rely on the |
I'd forgotten #593. We'll have to revert JuliaLang/julia#34575 instead of changing the return type of I think we made the wrong call in JuliaLang/julia#1875. The |
Another option is to have |
Wouldn't the simple fix for this issue be to define |
Ah it's a compatibility issue I suppose. |
I haved used julia since 0.6, and at all times matrix inverse worked for fields I have defined (finite fields, cyclotomic fields, rational fractions...). It stooped working in 1.5.9-beta1
Here is a MWE where I define a matrix over a finite prime field
This stopped working in 1.5.0-beta1
But the code for inverting matrices over an arbitrary field must still be somewhere in the library since inverting matrices of rationals still work. How do I use the code for inverting matrices over arbitrary fields for my own types?
The text was updated successfully, but these errors were encountered: