Skip to content

Commit 5d086f6

Browse files
authored
Resolvesd PR aerospaceresearch#231
removed the bug and now we can evaluate pi's value from gui
1 parent b55ab4a commit 5d086f6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

visma/io/tokenize.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def getTerms(eqn):
6868
terms = []
6969
while x < len(eqn):
7070

71-
if ('a' <= eqn[x] <= 'z') or ('A' <= eqn[x] <= 'Z') or eqn[x] in greek:
71+
if ('a' <= eqn[x] <= 'z') or ('A' <= eqn[x] <= 'Z') or eqn[x] in greek or eqn[x] in constants:
7272

7373
buf = eqn[x]
7474
if x + 3 < len(eqn):
@@ -103,6 +103,10 @@ def getTerms(eqn):
103103
terms.append("exp")
104104
x += 1
105105
continue
106+
elif eqn[x] ==constants[0]:
107+
terms.append(str(math.pi))
108+
x += 1
109+
continue
106110
elif eqn[x] == 'i':
107111
terms.append("iota")
108112
x += 1

0 commit comments

Comments
 (0)