Python-symbolic/python_symb/expr.py
2023-07-31 04:39:20 +02:00

13 lines
281 B
Python

from __future__ import annotations
from typing import Union, List, Tuple, Optional, Dict, Callable
from tree import Tree
from operator import Add, Mul, Neg, Parenthesis
class Expr(Tree):
def __init__(self, value, children=None):
super().__init__(value, children)