Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,13 @@
|
|
1 |
import streamlit as st
|
2 |
-
import numpy as np
|
3 |
-
import pandas as pd
|
4 |
|
5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
def removeLeftRecursion(rulesDiction):
|
7 |
store = {}
|
8 |
for lhs in rulesDiction:
|
@@ -16,7 +21,7 @@ def removeLeftRecursion(rulesDiction):
|
|
16 |
betaRules.append(subrhs)
|
17 |
if len(alphaRules) != 0:
|
18 |
lhs_ = lhs + "'"
|
19 |
-
while
|
20 |
lhs_ += "'"
|
21 |
for b in range(len(betaRules)):
|
22 |
betaRules[b].append(lhs_)
|
@@ -29,14 +34,13 @@ def removeLeftRecursion(rulesDiction):
|
|
29 |
rulesDiction[left] = store[left]
|
30 |
return rulesDiction
|
31 |
|
32 |
-
# Function for Left Factoring
|
33 |
def LeftFactoring(rulesDiction):
|
34 |
newDict = {}
|
35 |
for lhs in rulesDiction:
|
36 |
allrhs = rulesDiction[lhs]
|
37 |
temp = dict()
|
38 |
for subrhs in allrhs:
|
39 |
-
if subrhs[0] not in temp.keys():
|
40 |
temp[subrhs[0]] = [subrhs]
|
41 |
else:
|
42 |
temp[subrhs[0]].append(subrhs)
|
@@ -46,7 +50,7 @@ def LeftFactoring(rulesDiction):
|
|
46 |
allStartingWithTermKey = temp[term_key]
|
47 |
if len(allStartingWithTermKey) > 1:
|
48 |
lhs_ = lhs + "'"
|
49 |
-
while
|
50 |
lhs_ += "'"
|
51 |
new_rule.append([term_key, lhs_])
|
52 |
ex_rules = []
|
@@ -60,148 +64,175 @@ def LeftFactoring(rulesDiction):
|
|
60 |
newDict[key] = tempo_dict[key]
|
61 |
return newDict
|
62 |
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
if
|
69 |
-
|
70 |
-
|
71 |
-
for
|
72 |
-
|
73 |
-
|
|
|
74 |
else:
|
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 |
while stack:
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
if rule != ['#']:
|
145 |
-
stack.extend(reversed(rule))
|
146 |
else:
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
|
|
|
|
|
|
|
|
151 |
|
152 |
# Main Streamlit App
|
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 |
-
|
|
|
|
1 |
import streamlit as st
|
|
|
|
|
2 |
|
3 |
+
rules = []
|
4 |
+
nonterm_userdef = []
|
5 |
+
term_userdef = []
|
6 |
+
diction = {}
|
7 |
+
firsts = {}
|
8 |
+
follows = {}
|
9 |
+
start_symbol = None
|
10 |
+
|
11 |
def removeLeftRecursion(rulesDiction):
|
12 |
store = {}
|
13 |
for lhs in rulesDiction:
|
|
|
21 |
betaRules.append(subrhs)
|
22 |
if len(alphaRules) != 0:
|
23 |
lhs_ = lhs + "'"
|
24 |
+
while lhs_ in rulesDiction.keys() or lhs_ in store.keys():
|
25 |
lhs_ += "'"
|
26 |
for b in range(len(betaRules)):
|
27 |
betaRules[b].append(lhs_)
|
|
|
34 |
rulesDiction[left] = store[left]
|
35 |
return rulesDiction
|
36 |
|
|
|
37 |
def LeftFactoring(rulesDiction):
|
38 |
newDict = {}
|
39 |
for lhs in rulesDiction:
|
40 |
allrhs = rulesDiction[lhs]
|
41 |
temp = dict()
|
42 |
for subrhs in allrhs:
|
43 |
+
if subrhs[0] not in list(temp.keys()):
|
44 |
temp[subrhs[0]] = [subrhs]
|
45 |
else:
|
46 |
temp[subrhs[0]].append(subrhs)
|
|
|
50 |
allStartingWithTermKey = temp[term_key]
|
51 |
if len(allStartingWithTermKey) > 1:
|
52 |
lhs_ = lhs + "'"
|
53 |
+
while lhs_ in rulesDiction.keys() or lhs_ in tempo_dict.keys():
|
54 |
lhs_ += "'"
|
55 |
new_rule.append([term_key, lhs_])
|
56 |
ex_rules = []
|
|
|
64 |
newDict[key] = tempo_dict[key]
|
65 |
return newDict
|
66 |
|
67 |
+
def first(rule):
|
68 |
+
if len(rule) != 0 and rule[0] in term_userdef:
|
69 |
+
return rule[0]
|
70 |
+
elif len(rule) != 0 and rule[0] == '#':
|
71 |
+
return '#'
|
72 |
+
if len(rule) != 0 and rule[0] in diction:
|
73 |
+
fres = []
|
74 |
+
rhs_rules = diction[rule[0]]
|
75 |
+
for itr in rhs_rules:
|
76 |
+
indivRes = first(itr)
|
77 |
+
if type(indivRes) is list:
|
78 |
+
fres.extend(indivRes)
|
79 |
else:
|
80 |
+
fres.append(indivRes)
|
81 |
+
if '#' not in fres:
|
82 |
+
return fres
|
83 |
+
else:
|
84 |
+
newList = fres
|
85 |
+
fres.remove('#')
|
86 |
+
if len(rule) > 1:
|
87 |
+
ansNew = first(rule[1:])
|
88 |
+
if ansNew is not None:
|
89 |
+
if type(ansNew) is list:
|
90 |
+
newList = fres + ansNew
|
91 |
+
else:
|
92 |
+
newList = fres + [ansNew]
|
93 |
+
fres.append('#')
|
94 |
+
return fres
|
95 |
+
|
96 |
+
def follow(nt):
|
97 |
+
solset = set()
|
98 |
+
if nt == start_symbol:
|
99 |
+
solset.add('$')
|
100 |
+
for curNT in diction:
|
101 |
+
rhs = diction[curNT]
|
102 |
+
for subrule in rhs:
|
103 |
+
if nt in subrule:
|
104 |
+
while nt in subrule:
|
105 |
+
index_nt = subrule.index(nt)
|
106 |
+
subrule = subrule[index_nt + 1:]
|
107 |
+
if len(subrule) != 0:
|
108 |
+
res = first(subrule)
|
109 |
+
if res is not None:
|
110 |
+
if '#' in res:
|
111 |
+
res.remove('#')
|
112 |
+
follow_res = follow(curNT)
|
113 |
+
if follow_res:
|
114 |
+
res += follow_res
|
115 |
+
else:
|
116 |
+
res = []
|
117 |
+
else:
|
118 |
+
if nt != curNT:
|
119 |
+
res = follow(curNT)
|
120 |
+
if res is None:
|
121 |
+
res = []
|
122 |
+
solset.update(res if type(res) is list else [res])
|
123 |
+
return list(solset)
|
124 |
+
|
125 |
+
def computeAllFirsts():
|
126 |
+
global firsts
|
127 |
+
for y in diction.keys():
|
128 |
+
firsts[y] = set()
|
129 |
+
for sub in diction[y]:
|
130 |
+
result = first(sub)
|
131 |
+
if result is not None:
|
132 |
+
firsts[y].update(result if type(result) is list else [result])
|
133 |
+
|
134 |
+
def computeAllFollows():
|
135 |
+
global follows
|
136 |
+
for NT in diction.keys():
|
137 |
+
follows[NT] = set(follow(NT))
|
138 |
+
|
139 |
+
def createParseTable():
|
140 |
+
global term_userdef, firsts, follows
|
141 |
+
table = {}
|
142 |
+
grammar_is_LL = True
|
143 |
+
for lhs in diction.keys():
|
144 |
+
table[lhs] = {}
|
145 |
+
for term in term_userdef + ['$']:
|
146 |
+
table[lhs][term] = ""
|
147 |
+
for lhs in diction:
|
148 |
+
for rule in diction[lhs]:
|
149 |
+
first_res = first(rule)
|
150 |
+
if '#' in first_res:
|
151 |
+
first_res.remove('#')
|
152 |
+
follow_res = follows[lhs]
|
153 |
+
first_res.update(follow_res)
|
154 |
+
for term in first_res:
|
155 |
+
if table[lhs][term] == "":
|
156 |
+
table[lhs][term] = f"{lhs} -> {' '.join(rule)}"
|
157 |
+
else:
|
158 |
+
grammar_is_LL = False
|
159 |
+
return table, grammar_is_LL
|
160 |
+
|
161 |
+
def validateStringUsingStackBuffer(parse_table, input_string):
|
162 |
+
stack = [start_symbol, '$']
|
163 |
+
buffer = ['$'] + input_string.split()[::-1]
|
164 |
while stack:
|
165 |
+
top_stack = stack.pop(0)
|
166 |
+
top_buffer = buffer.pop()
|
167 |
+
if top_stack in term_userdef:
|
168 |
+
if top_stack != top_buffer:
|
169 |
+
return "Invalid String"
|
170 |
+
elif top_stack == top_buffer:
|
171 |
+
continue
|
|
|
|
|
172 |
else:
|
173 |
+
rule = parse_table.get(top_stack, {}).get(top_buffer, None)
|
174 |
+
if rule:
|
175 |
+
rule_rhs = rule.split('->')[1].strip().split()
|
176 |
+
stack = rule_rhs + stack
|
177 |
+
else:
|
178 |
+
return "Invalid String"
|
179 |
+
return "Valid String"
|
180 |
+
|
181 |
|
182 |
# Main Streamlit App
|
183 |
+
st.title("LL(1) Grammar Analyzer")
|
184 |
+
|
185 |
+
st.subheader("Grammar Rules Input")
|
186 |
+
start_symbol = st.text_input("Enter Start Symbol (Non-terminal)")
|
187 |
+
num_rules = st.number_input("Number of Grammar Rules", min_value=1, step=1)
|
188 |
+
rules = []
|
189 |
+
for i in range(num_rules):
|
190 |
+
rule = st.text_input(f"Rule {i+1}")
|
191 |
+
if rule:
|
192 |
+
rules.append(rule)
|
193 |
+
|
194 |
+
nonterm_userdef = st.text_input("Enter Non-Terminals (comma-separated)").split(',')
|
195 |
+
term_userdef = st.text_input("Enter Terminals (comma-separated)").split(',')
|
196 |
+
|
197 |
+
|
198 |
+
if st.button("Analyze Grammar"):
|
199 |
+
diction.clear()
|
200 |
+
firsts.clear()
|
201 |
+
follows.clear()
|
202 |
+
|
203 |
+
for rule in rules:
|
204 |
+
lhs, rhs = rule.split("->")
|
205 |
+
lhs = lhs.strip()
|
206 |
+
rhs_list = [x.strip().split() for x in rhs.split("|")]
|
207 |
+
diction[lhs] = rhs_list
|
208 |
+
|
209 |
+
st.subheader("Grammar After Removing Left Recursion")
|
210 |
+
diction = removeLeftRecursion(diction)
|
211 |
+
st.write(diction)
|
212 |
+
|
213 |
+
st.subheader("Grammar After Left Factoring")
|
214 |
+
diction = LeftFactoring(diction)
|
215 |
+
st.write(diction)
|
216 |
+
|
217 |
+
computeAllFirsts()
|
218 |
+
st.subheader("FIRST Sets")
|
219 |
+
st.write(firsts)
|
220 |
+
|
221 |
+
computeAllFollows()
|
222 |
+
st.subheader("FOLLOW Sets")
|
223 |
+
st.write(follows)
|
224 |
+
|
225 |
+
parse_table, grammar_is_LL = createParseTable()
|
226 |
+
st.subheader("Parse Table")
|
227 |
+
st.write(parse_table)
|
228 |
+
|
229 |
+
if grammar_is_LL:
|
230 |
+
st.success("The grammar is LL(1)")
|
231 |
+
else:
|
232 |
+
st.error("The grammar is not LL(1)")
|
233 |
+
|
234 |
+
input_string = st.text_input("Enter String to Validate (space-separated)")
|
235 |
+
if input_string:
|
236 |
+
result = validateStringUsingStackBuffer(parse_table, input_string)
|
237 |
+
st.subheader("Validation Result")
|
238 |
+
st.write(result)
|