We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfd2dfe commit 72e15b6Copy full SHA for 72e15b6
src/sage/data_structures/stream.py
@@ -1113,6 +1113,15 @@ def is_uninitialized(self):
1113
sage: C = Stream_uninitialized(0)
1114
sage: C.is_uninitialized()
1115
True
1116
+
1117
+ A more subtle uninitialized series::
1118
1119
+ sage: L.<z> = LazyPowerSeriesRing(QQ)
1120
+ sage: T = L.undefined(1)
1121
+ sage: D = L.undefined(0)
1122
+ sage: T.define(z * exp(T) * D)
1123
+ sage: T._coeff_stream.is_uninitialized()
1124
+ True
1125
"""
1126
if self._target is None:
1127
return True
0 commit comments