Change "instances" class variables of Smybols and children of Symbols to Dict instead of List. Start expand.py (not completed)
This commit is contained in:
parent
77c8973eb7
commit
1738fa5d4c
6 changed files with 41 additions and 27 deletions
|
@ -1,7 +1,6 @@
|
|||
import tkinter as tk
|
||||
from python_symb.Expressions.expr import Expr
|
||||
from python_symb.MathTypes.symbols import Var
|
||||
from python_symb.Parsing.parse import update_symbols_dict
|
||||
|
||||
|
||||
class Visual:
|
||||
|
@ -72,8 +71,6 @@ class Visual:
|
|||
if v not in Var.instances:
|
||||
Var(v)
|
||||
|
||||
# Update the symbols dict
|
||||
update_symbols_dict()
|
||||
|
||||
|
||||
def show_tree(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue