-
Notifications
You must be signed in to change notification settings - Fork 69
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
Allow singular matrices in saturate
#1102
Conversation
probably correct - but I'd expect it to be much slower (for suitable evil examples)
|
I had some fun, adapting the original concept to the singular case. Indeed, the |
Hmph, I should listen better. You told me, not to compute the inverses, but to just solve the linear system directly. Well, this reduces the code to less than it was before, works out of the box for singular matrices, and speeds it up. |
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.
Just look at commit ea0b343 – unless you are interested in all the comments in the previous commits.
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #1102 +/- ##
==========================================
+ Coverage 69.30% 69.32% +0.01%
==========================================
Files 349 349
Lines 112890 112895 +5
==========================================
+ Hits 78237 78259 +22
+ Misses 34653 34636 -17
☔ View full report in Codecov by Sentry. |
Possible fix for #1101.