Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Adding Fmpz mpoly #59, cont. #132
Adding Fmpz mpoly #59, cont. #132
Changes from 94 commits
357e435
e973105
74c5f85
c24b2ff
0489152
518c0a7
89d567c
7176fe7
3dbc6ae
dc7be11
b5d0e91
843b9f3
f346904
3407bce
96178ce
0f2fceb
fe614c5
fbe31b7
7f9c193
70b23be
692c3e7
ab7e114
2ebf15d
ca4391d
b156482
1313637
5249c19
80b1325
e3c81d8
8834263
f2a8bbb
9e14bcb
d5e2b56
941041c
2ba6a29
109fad8
ce5c9e7
8752894
1839619
ca3dd70
ea19511
62f1446
df9b929
40b383d
35c23a4
3d51daa
e19044e
fa07adf
63f22fa
13f5186
8a09691
6c0e0cc
0878b38
98a0cb7
4b08299
82885a4
f083101
8239992
f35903e
a61b4e4
a108522
59a34ad
a7eb6f6
aac76b4
a31d49c
b408ae5
29c8015
a961889
d7e23fc
d1632d2
a485ca3
17b3406
4cf40f9
4e22e14
6af7433
aef740c
3ebd8ff
6e12555
317189a
250861f
bc61ca9
e175854
7ec3112
96fa8e6
59bce43
492f962
fcd9294
efb2c27
4bef177
ada4b2f
e093ac1
faa1fb2
fbc6854
10c19be
d70c2f9
8f76c6a
dc7c787
e042933
128ae01
1317bb0
424dc4f
1c88ec3
fb10785
c8782c5
c0c0517
d4e6589
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Maybe these should just be removed now.
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.
Now that we have
monoms
andcoeffs
which perform the same role.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.
Agreed, but I will note here that
.items
is slightly different that the.terms
currently implemented (and sympy), it returns a list of the terms of the polynomials rather than a tuple of exponent tuple and coefficient. (I swear I commented about that but I cannot find it)I'm tempting to move the current
.terms
behaviour into another function or remove it, making.terms
align with sympy. Though I'm not sure what I would name it