-
Notifications
You must be signed in to change notification settings - Fork 90
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
force sym/herm back to return Matrix (1.6 inference fix) #393
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Patch bump please :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for solving this
Perhaps instead of converting to |
We call If there is a more efficient way should it be PRed to Base for |
Oh you're right, then yes, this is fine. But a future PR should fix that.
My suggestion is to avoid converting to
A more efficient way to do what? |
Codecov Report
@@ Coverage Diff @@
## master #393 +/- ##
==========================================
- Coverage 98.49% 98.43% -0.06%
==========================================
Files 22 22
Lines 1855 1857 +2
==========================================
+ Hits 1827 1828 +1
- Misses 28 29 +1
Continue to review full report at Codecov.
|
Fixed the type inference failures we have been seeing in 1.6.
They show up because:
On 1.5:
On 1.6:
Which honestly is kinda cool, but not what we want if we are to be type stable
Possibly we should push
uplo
into the type domain with a value type,but that is beyond the scope of this PR.
The other branchs force the result to be a
Matrix
so the last should too