Skip to content

Commit febe154

Browse files
Add mul_low and pow_trunc to protocol epoly_p
1 parent 7dc4dbd commit febe154

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/flint/typing.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ def gcd(self, other: Self | _Tscalar, /) -> Self: ...
143143
def factor(self) -> tuple[_Tscalar, list[tuple[Self, int]]]: ...
144144
def factor_squarefree(self) -> tuple[_Tscalar, list[tuple[Self, int]]]: ...
145145
def deflation(self) -> tuple[Self, int]: ...
146+
def mul_low(self, other: Self, n: int) -> Self: ...
147+
def pow_trunc(self, e: int, n: int) -> Self: ...
146148

147149

148150
class _series_p(elem_p, Protocol[_Tscalar]):

0 commit comments

Comments
 (0)