Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
improve documentation, move zero, one, characteristic, etc. to ABC
Browse files Browse the repository at this point in the history
  • Loading branch information
mantepse committed Aug 11, 2022
1 parent c74fd71 commit 9d6579b
Show file tree
Hide file tree
Showing 3 changed files with 179 additions and 277 deletions.
2 changes: 1 addition & 1 deletion src/sage/data_structures/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ class Stream_exact(Stream):
"""
def __init__(self, initial_coefficients, is_sparse, constant=None, degree=None, order=None):
"""
Initialize a series that is known to be eventually geometric.
Initialize a stream with eventually constant coefficients.
TESTS::
Expand Down
2 changes: 1 addition & 1 deletion src/sage/rings/lazy_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ def define(self, s):
sage: L = LazySymmetricFunctions(m)
sage: E = L(lambda n: s[n], valuation=0)
sage: X = L(s[1])
sage: A = L(None); A.define(X*E(A))
sage: A = L(None); A.define(X*E(A, check=False))
sage: A
m[1] + (2*m[1,1]+m[2]) + (9*m[1,1,1]+5*m[2,1]+2*m[3]) + (64*m[1,1,1,1]+34*m[2,1,1]+18*m[2,2]+13*m[3,1]+4*m[4]) + (625*m[1,1,1,1,1]+326*m[2,1,1,1]+171*m[2,2,1]+119*m[3,1,1]+63*m[3,2]+35*m[4,1]+9*m[5]) + (7776*m[1,1,1,1,1,1]+4016*m[2,1,1,1,1]+2078*m[2,2,1,1]+1077*m[2,2,2]+1433*m[3,1,1,1]+744*m[3,2,1]+268*m[3,3]+401*m[4,1,1]+209*m[4,2]+95*m[5,1]+20*m[6]) + O^7
Expand Down
Loading

0 comments on commit 9d6579b

Please sign in to comment.