mirror of
https://github.com/Lyxal/Keta.git
synced 2024-08-14 23:53:13 +00:00
Update chainify.py
This commit is contained in:
parent
147c611fef
commit
3ddf361d17
1 changed files with 16 additions and 1 deletions
17
chainify.py
17
chainify.py
|
@ -42,4 +42,19 @@ for exp in exprs:
|
||||||
pattern, fns = exp
|
pattern, fns = exp
|
||||||
|
|
||||||
if pattern == "020":
|
if pattern == "020":
|
||||||
print(fns[1] + "(" + fns[0] + ",", fns[2] + ")")
|
print(fns[1] + "(" + fns[0] + ", " + fns[2] + ")")
|
||||||
|
|
||||||
|
elif pattern == "02":
|
||||||
|
print(fns[1] + "(" + fns[0] + ", R)")
|
||||||
|
|
||||||
|
elif pattern == "10":
|
||||||
|
print(fns[0] + "(" + fns[1] + ")")
|
||||||
|
|
||||||
|
elif pattern == "11":
|
||||||
|
print(fns[0] + "(" + fns[1] + "(R))")
|
||||||
|
|
||||||
|
elif pattern == "12":
|
||||||
|
print(fns[1] + "(" + fns[0] + ", " + "R)")
|
||||||
|
|
||||||
|
elif pattern == "20":
|
||||||
|
print(fns[0] + "(L, " + fns[1] + ")")
|
||||||
|
|
Loading…
Reference in a new issue