Skip to content

Commit

Permalink
marked todo case
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandraGrass committed Jul 29, 2019
1 parent 00efb95 commit a9ed467
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from argparse import ArgumentParser, ArgumentDefaultsHelpFormatter

# default values
input_file = "input/test1.ml"
output_file = "output/test1.txt"
input_file = "input/slide_159.ml"
output_file = "output/slide_159.txt"

# parse command line arguments
parser = ArgumentParser(
Expand Down
2 changes: 1 addition & 1 deletion parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def mk_fun(x, depth, dictio):

return Other("fun", children, depth)

def split_expr(exprs):
def split_expr(exprs): # TODO fix with own parsing approach
x = parse("({e1}) {e2}", exprs)
if(x != None):
tmp = [x['e1']]
Expand Down

0 comments on commit a9ed467

Please sign in to comment.