1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
|
from collections.abc import Callable, Mapping
from enum import Enum
from typing import Any, Generic, ParamSpec, Self, TypeAlias, overload
from typing import Literal as L
from typing_extensions import TypeVar
__all__ = ["Expr"]
###
_Tss = ParamSpec("_Tss")
_ExprT = TypeVar("_ExprT", bound=Expr)
_ExprT1 = TypeVar("_ExprT1", bound=Expr)
_ExprT2 = TypeVar("_ExprT2", bound=Expr)
_OpT_co = TypeVar("_OpT_co", bound=Op, default=Op, covariant=True)
_LanguageT_co = TypeVar("_LanguageT_co", bound=Language, default=Language, covariant=True)
_DataT_co = TypeVar("_DataT_co", default=Any, covariant=True)
_LeftT_co = TypeVar("_LeftT_co", default=Any, covariant=True)
_RightT_co = TypeVar("_RightT_co", default=Any, covariant=True)
_RelCOrPy: TypeAlias = L["==", "!=", "<", "<=", ">", ">="]
_RelFortran: TypeAlias = L[".eq.", ".ne.", ".lt.", ".le.", ".gt.", ".ge."]
_ToExpr: TypeAlias = Expr | complex | str
_ToExprN: TypeAlias = _ToExpr | tuple[_ToExprN, ...]
_NestedString: TypeAlias = str | tuple[_NestedString, ...] | list[_NestedString]
###
class OpError(Exception): ...
class ExprWarning(UserWarning): ...
class Language(Enum):
Python = 0
Fortran = 1
C = 2
class Op(Enum):
INTEGER = 10
REAL = 12
COMPLEX = 15
STRING = 20
ARRAY = 30
SYMBOL = 40
TERNARY = 100
APPLY = 200
INDEXING = 210
CONCAT = 220
RELATIONAL = 300
TERMS = 1_000
FACTORS = 2_000
REF = 3_000
DEREF = 3_001
class RelOp(Enum):
EQ = 1
NE = 2
LT = 3
LE = 4
GT = 5
GE = 6
@overload
@classmethod
def fromstring(cls, s: _RelCOrPy, language: L[Language.C, Language.Python] = ...) -> RelOp: ...
@overload
@classmethod
def fromstring(cls, s: _RelFortran, language: L[Language.Fortran]) -> RelOp: ...
#
@overload
def tostring(self, /, language: L[Language.C, Language.Python] = ...) -> _RelCOrPy: ...
@overload
def tostring(self, /, language: L[Language.Fortran]) -> _RelFortran: ...
class ArithOp(Enum):
POS = 1
NEG = 2
ADD = 3
SUB = 4
MUL = 5
DIV = 6
POW = 7
class Precedence(Enum):
ATOM = 0
POWER = 1
UNARY = 2
PRODUCT = 3
SUM = 4
LT = 6
EQ = 7
LAND = 11
LOR = 12
TERNARY = 13
ASSIGN = 14
TUPLE = 15
NONE = 100
class Expr(Generic[_OpT_co, _DataT_co]):
op: _OpT_co
data: _DataT_co
@staticmethod
def parse(s: str, language: Language = ...) -> Expr: ...
#
def __init__(self, /, op: Op, data: _DataT_co) -> None: ...
#
def __lt__(self, other: Expr, /) -> bool: ...
def __le__(self, other: Expr, /) -> bool: ...
def __gt__(self, other: Expr, /) -> bool: ...
def __ge__(self, other: Expr, /) -> bool: ...
#
def __pos__(self, /) -> Self: ...
def __neg__(self, /) -> Expr: ...
#
def __add__(self, other: Expr, /) -> Expr: ...
def __radd__(self, other: Expr, /) -> Expr: ...
#
def __sub__(self, other: Expr, /) -> Expr: ...
def __rsub__(self, other: Expr, /) -> Expr: ...
#
def __mul__(self, other: Expr, /) -> Expr: ...
def __rmul__(self, other: Expr, /) -> Expr: ...
#
def __pow__(self, other: Expr, /) -> Expr: ...
#
def __truediv__(self, other: Expr, /) -> Expr: ...
def __rtruediv__(self, other: Expr, /) -> Expr: ...
#
def __floordiv__(self, other: Expr, /) -> Expr: ...
def __rfloordiv__(self, other: Expr, /) -> Expr: ...
#
def __call__(
self,
/,
*args: _ToExprN,
**kwargs: _ToExprN,
) -> Expr[L[Op.APPLY], tuple[Self, tuple[Expr, ...], dict[str, Expr]]]: ...
#
@overload
def __getitem__(self, index: _ExprT | tuple[_ExprT], /) -> Expr[L[Op.INDEXING], tuple[Self, _ExprT]]: ...
@overload
def __getitem__(self, index: _ToExpr | tuple[_ToExpr], /) -> Expr[L[Op.INDEXING], tuple[Self, Expr]]: ...
#
def substitute(self, /, symbols_map: Mapping[Expr, Expr]) -> Expr: ...
#
@overload
def traverse(self, /, visit: Callable[_Tss, None], *args: _Tss.args, **kwargs: _Tss.kwargs) -> Expr: ...
@overload
def traverse(self, /, visit: Callable[_Tss, _ExprT], *args: _Tss.args, **kwargs: _Tss.kwargs) -> _ExprT: ...
#
def contains(self, /, other: Expr) -> bool: ...
#
def symbols(self, /) -> set[Expr]: ...
def polynomial_atoms(self, /) -> set[Expr]: ...
#
def linear_solve(self, /, symbol: Expr) -> tuple[Expr, Expr]: ...
#
def tostring(self, /, parent_precedence: Precedence = ..., language: Language = ...) -> str: ...
class _Pair(Generic[_LeftT_co, _RightT_co]):
left: _LeftT_co
right: _RightT_co
def __init__(self, /, left: _LeftT_co, right: _RightT_co) -> None: ...
#
@overload
def substitute(self: _Pair[_ExprT1, _ExprT2], /, symbols_map: Mapping[Expr, Expr]) -> _Pair[Expr, Expr]: ...
@overload
def substitute(self: _Pair[_ExprT1, object], /, symbols_map: Mapping[Expr, Expr]) -> _Pair[Expr, Any]: ...
@overload
def substitute(self: _Pair[object, _ExprT2], /, symbols_map: Mapping[Expr, Expr]) -> _Pair[Any, Expr]: ...
@overload
def substitute(self, /, symbols_map: Mapping[Expr, Expr]) -> _Pair: ...
class _FromStringWorker(Generic[_LanguageT_co]):
language: _LanguageT_co
original: str | None
quotes_map: dict[str, str]
@overload
def __init__(self: _FromStringWorker[L[Language.C]], /, language: L[Language.C] = ...) -> None: ...
@overload
def __init__(self, /, language: _LanguageT_co) -> None: ...
#
def finalize_string(self, /, s: str) -> str: ...
#
def parse(self, /, inp: str) -> Expr | _Pair: ...
#
@overload
def process(self, /, s: str, context: str = "expr") -> Expr | _Pair: ...
@overload
def process(self, /, s: list[str], context: str = "expr") -> list[Expr | _Pair]: ...
@overload
def process(self, /, s: tuple[str, ...], context: str = "expr") -> tuple[Expr | _Pair, ...]: ...
@overload
def process(self, /, s: _NestedString, context: str = "expr") -> Any: ... # noqa: ANN401
|