from collections.abc import Callable, Mapping from enum import Enum from typing import Any, Generic, Literal as L, Self, overload, override from typing_extensions import TypeVar __all__ = ["Expr"] ### # Explicit covariance is required here due to the inexpressible read-only attributes. _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) type _RelCOrPy = L["==", "!=", "<", "<=", ">", ">="] type _RelFortran = L[".eq.", ".ne.", ".lt.", ".le.", ".gt.", ".ge."] type _ToExpr = Expr | complex | str type _ToExprN = _ToExpr | tuple[_ToExprN, ...] type _NestedString = 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 # read-only data: _DataT_co # read-only @staticmethod def parse(s: str, language: Language = ...) -> Expr: ... # def __init__(self, /, op: Op, data: _DataT_co) -> None: ... # @override def __eq__(self, other: object, /) -> bool: ... # 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__[ExprT: Expr](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[**Tss](self, /, visit: Callable[Tss, None], *args: Tss.args, **kwargs: Tss.kwargs) -> Expr: ... @overload def traverse[**Tss, ExprT: Expr](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 # read-only right: _RightT_co # read-only def __init__(self, /, left: _LeftT_co, right: _RightT_co) -> None: ... # @overload def substitute[ExprT: Expr](self: _Pair[ExprT, ExprT], /, symbols_map: Mapping[Expr, Expr]) -> _Pair[Expr, Expr]: ... @overload def substitute[ExprT: Expr](self: _Pair[ExprT, object], /, symbols_map: Mapping[Expr, Expr]) -> _Pair[Expr, Any]: ... @overload def substitute[ExprT: Expr](self: _Pair[object, ExprT], /, 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 # read-only 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: ...