ayushnoori commited on
Commit
49353d1
·
1 Parent(s): e7d6d50

Modify app dependencies

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -10,12 +10,12 @@ import time
10
  from arithmetic import *
11
  from strings import *
12
  from abstract_syntax_tree import *
13
- from examples import example_set, check_examples
14
- from synthesizer import
15
  import config
16
 
17
  # write streamlit title
18
- st.title("Bottom-Up Enumerative Program Synthesis")
19
 
20
  # create class to hold arguments instead of arg-parser
21
  class Args(object):
 
10
  from arithmetic import *
11
  from strings import *
12
  from abstract_syntax_tree import *
13
+ from examples import *
14
+ from synthesis import *
15
  import config
16
 
17
  # write streamlit title
18
+ st.title("Bottom-Up Program Synthesis")
19
 
20
  # create class to hold arguments instead of arg-parser
21
  class Args(object):