-
Notifications
You must be signed in to change notification settings - Fork 65
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
fix: make dot work again #1593
fix: make dot work again #1593
Conversation
We already have AbstractAlgebra.jl/src/NemoStuff.jl Line 402 in c563d60
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1593 +/- ##
=======================================
Coverage 87.17% 87.17%
=======================================
Files 115 115
Lines 29565 29567 +2
=======================================
+ Hits 25773 25776 +3
+ Misses 3792 3791 -1 ☔ View full report in Codecov by Sentry. |
src/Rings.jl
Outdated
|
||
dot(x::NCRingElem, y::Union{Integer, Rational, AbstractFloat}) = x * y | ||
|
||
dot(x::Union{Integer, Rational, AbstractFloat}, y::NCRingElem) = x * y |
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.
Can you move all of this to src/NCRings.jl
to match the test file?
Co-authored-by: Lars Göttgens <[email protected]>
No description provided.