-
Notifications
You must be signed in to change notification settings - Fork 126
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
Disable polynomial ring caching in projective_space
and affine_space
methods
#4094
Disable polynomial ring caching in projective_space
and affine_space
methods
#4094
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.
Looks fine.
6974109
to
833e4be
Compare
# ring around the rosie once | ||
@test pX == X(rational_point_coordinates(defining_ideal(scheme(pX)))) | ||
Oscar.closed_embedding(pA) | ||
Oscar.closed_embedding(pX) | ||
@test dim(tangent_space(pX))==1 | ||
@test dim(tangent_space(pA))==2 | ||
|
||
A2a = affine_space(GF(2), [:x, :y]); | ||
@test A2a([1,0]) == pA |
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.
This test failed because now A2
and A2a
are not using the same polynomial ring anymore (note that A2 != A2a
holds now and also before)
projective_space
and affine_space
methodsprojective_space
and affine_space
methods
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #4094 +/- ##
==========================================
- Coverage 84.63% 84.63% -0.01%
==========================================
Files 614 614
Lines 83366 83366
==========================================
- Hits 70558 70556 -2
- Misses 12808 12810 +2
|
Another part of PR #3865 (and this part of it was already discussed extensively there)
I hope it'll either just pass fine, or if it has problems, then at least just a subset of those in PR #3865.