about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <git@emile.space>2023-02-19 04:42:51 +0100
committerEmile <git@emile.space>2023-02-19 04:42:51 +0100
commite61b60b35b8ba07cac0624b4344c8d840bb5bba0 (patch)
treec5a22e6ad854b21bf7fc221c171b09ae30601caa
parenta66e06960ae5e0bcbefb25831f1dcde32e80fd1b (diff)
save before pause
-rw-r--r--solve.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/solve.py b/solve.py
index 74bc7c0..3e6660a 100644
--- a/solve.py
+++ b/solve.py
@@ -483,12 +483,16 @@ def brute_force_single(level, s, goal_s):
 ### ########################################
 
 s='(λa b. a λc. b (a c))'
-t='(λa b. a λc. b (a a c))'
+s='(λa b c. a b (a c))'
+t='(λa b c. a b (a c))'
+#t='(λa b. a λc. b (a a c))'
 goal_s='(λx y. x)'
 goal_t='(λx y. y)'
 r1 = brute_force(0, s, t, goal_s, goal_t)
 print(f"{r1=}")
 
+exit()
+
 #for i in range(0, 50):
 #    s = "(λa b. a (a b))"
 #    t = "(λa b. a (a a))"