lambda

Random lambda calculus stuff

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 35
  36. 36
  37. 37
  38. 38
  39. 39
  40. 40
  41. 41
  42. 42
  43. 43
  44. 44
  45. 45
  46. 46
  47. 47
  48. 48
  49. 49
  50. 50
  51. 51
  52. 52
  53. 53
  54. 54
  55. 55
  56. 56
  57. 57
  58. 58
  59. 59
  60. 60
  61. 61
  62. 62
  63. 63
  64. 64
  65. 65
  66. 66
  67. 67
  68. 68
  69. 69
  70. 70
  71. 71
  72. 72
  73. 73
  74. 74
  75. 75
  76. 76
  77. 77
  78. 78
  79. 79
  80. 80
  81. 81
  82. 82
  83. 83
  84. 84
  85. 85
  86. 86
  87. 87
  88. 88
  89. 89
  90. 90
  91. 91
  92. 92
  93. 93
  94. 94
  95. 95
  96. 96
  97. 97
  98. 98
  99. 99
  100. 100
  101. 101
  102. 102
  103. 103
  104. 104
  105. 105
  106. 106
  107. 107
  108. 108
  109. 109
  110. 110
  111. 111
  112. 112
  113. 113
  114. 114
  115. 115
  116. 116
  117. 117
  118. 118
  119. 119
  120. 120
  121. 121
  122. 122
  123. 123
  124. 124
  125. 125
  126. 126
  127. 127
  128. 128
  129. 129
  130. 130
  131. 131
  132. 132
  133. 133
  134. 134
  135. 135
  136. 136
  137. 137
  138. 138
  139. 139
  140. 140
  141. 141
  142. 142
  143. 143
  144. 144
  145. 145
  146. 146
  147. 147
  148. 148
  149. 149
  150. 150
  151. 151
  152. 152
  153. 153
  154. 154
  155. 155
  156. 156
  157. 157
  158. 158
  159. 159
  160. 160
  161. 161
  162. 162
  163. 163
  164. 164
  165. 165
  166. 166
  167. 167
  168. 168
  169. 169
  170. 170
  171. 171
  172. 172
  173. 173
  174. 174
  175. 175
  176. 176
  177. 177
  178. 178
  179. 179
  180. 180
  181. 181
  182. 182
  183. 183
  184. 184
  185. 185
  186. 186
  187. 187
  188. 188
  189. 189
  190. 190
  191. 191
  192. 192
  193. 193
  194. 194
  195. 195
  196. 196
  197. 197
  198. 198
  199. 199
  200. 200
  201. 201
  202. 202
  203. 203
  204. 204
  205. 205
  206. 206
  207. 207
  208. 208
  209. 209
  210. 210
  211. 211
  212. 212
  213. 213
  214. 214
  215. 215
  216. 216
  217. 217
  218. 218
  219. 219
  220. 220
  221. 221
# Don't use any features above Python 3.9!
# Since that's what Ren'Py uses
# So no pattern matching sadly
# Format with ruff format lambcalc.py
# Must specify file or it'll mess with the vendored deps too

import sys
from random import randrange
from typing import Any, NamedTuple


## Lambda term
class L(NamedTuple):
    var: int
    body: Any


# Application term
class A(NamedTuple):
    fn: Any
    arg: Any


# Recursively substitute var with rep in term
def sub(term, var, rep):
    if type(term) is L:
        # assert term.var != var
        if term.var == var:
            # Shadowing
            return term
        return L(term.var, sub(term.body, var, rep))
    if type(term) is A:
        return A(sub(term.fn, var, rep), sub(term.arg, var, rep))
    if term == var:
        return rep
    return term


# Add offset to all bound vars
def alpha(term, offset, bound):
    if type(term) is L:
        return L(term.var + offset, alpha(term.body, offset, bound | {term.var}))
    if type(term) is A:
        return A(alpha(term.fn, offset, bound), alpha(term.arg, offset, bound))
    # if term in bound:
        return term + offset
    return term


# Simplify term using beta reduction
def red(term):
    if type(term) is L:
        return L(term.var, red(term.body))
    if type(term) is A:
        fn = red(term.fn)
        if type(fn) is L:
            # Rename bound vars in fn.body to avoid name collisions
            return red(sub(fn.body, fn.var, alpha(term.arg, randrange(10**8), set())))
        return A(fn, red(term.arg))
    return term


# Simplify term using beta reduction without var renaming
def red_dumb(term):
    if type(term) is L:
        return L(term.var, red_dumb(term.body))
    if type(term) is A:
        fn = red_dumb(term.fn)
        if type(fn) is L:
            return red_dumb(sub(fn.body, fn.var, term.arg))
        return A(fn, red_dumb(term.arg))
    return term


# Rename vars using first available int
# Input term must be reduced first
def canonicalize(term, bound, free):
    if type(term) is L:
        # Shadowing should never happen
        assert not term.var in bound
        if len(bound) == 0 and len(free) == 0:
            var2 = 1
        else:
            var2 = max((bound | free).values()) + 1
        return L(var2, canonicalize(term.body, bound | {term.var: var2}, free))
    if type(term) is A:
        return A(
            canonicalize(term.fn, bound, free), canonicalize(term.arg, bound, free)
        )
    if term in bound:
        return bound[term]
    if len(bound) == 0 and len(free) == 0:
        free[term] = 1
    elif not term in free:
        free[term] = max((bound | free).values()) + 1
    return free[term]


# Get size of term
def size(term):
    if type(term) is L:
        return 1 + size(term.body)
    if type(term) is A:
        return size(term.fn) + size(term.arg)
    return 1


# Check equality
def eq(term1, term2):
    return canonicalize(term1, {}, {}) == canonicalize(term2, {}, {})


animals = " 🦊🐱🐸🐷🐼🐶🐭🐻🐨🐯🐺🦁🐮🐹🐰🐵🦝🤔😱"


# Get friendly uncurried repr of canon term
def animal_repr_canon(term):
    if type(term) is str:
        return term
    if type(term) is L:
        if type(term.body) is L:
            return f"{animal_repr_canon(term.var)}{animal_repr_canon(term.body)}"
        return f"{animal_repr_canon(term.var)}->{animal_repr_canon(term.body)}|"
    if type(term) is A:
        return f"{animal_repr_canon(term.fn)}({animal_repr_canon(term.arg)})"
    return animals[term]


# Wrapper func
def animal_repr(term):
    return animal_repr_canon(canonicalize(term, {}, {}))


# https://en.wikipedia.org/wiki/SKI_combinator_calculus
I = L(1, 1)
K = L(1, L(2, 1))
S = L(1, L(2, L(3, A(A(1, 3), A(2, 3)))))
# https://en.wikipedia.org/wiki/Fixed-point_combinator
# red(Y) doesn't terminate though...
Y = L(1, A(L(2, A(1, A(2, 2))), L(2, A(1, A(2, 2)))))
Z = L(1, A(L(2, A(1, L(3, A(A(2, 2), 3)))), L(2, A(1, L(3, A(A(2, 2), 3))))))

# From https://lambster.dev/
# Same as K
ltrue = L(1, L(2, 1))
lfalse = L(1, L(2, 2))
land = L(1, L(2, A(A(1, 2), 1)))
lor = L(1, L(2, A(A(1, 1), 2)))
lnot = L(1, A(A(1, lfalse), ltrue))
lif = L(1, L(2, L(3, A(A(1, 2), 3))))
# Can also use pair/first/second for lists
lpair = L(1, L(2, L(3, A(A(3, 1), 2))))
lfirst = L(1, A(1, ltrue))
lsecond = L(1, A(1, lfalse))
lnil = L(1, ltrue)
lnull = L(1, A(1, L(2, L(3, lfalse))))
ltree = L(1, L(2, L(3, A(A(1, 2), 3))))
ldatum = L(1, A(1, lfirst))
lleft = L(1, A(A(1, lsecond), lfirst))
lright = L(1, A(1, lsecond))
lincr = L(1, L(2, L(3, A(2, A(A(1, 2), 3)))))
lplus = L(1, L(2, A(1, lincr)))
ltimes = L(1, L(2, A(1, A(lplus, 2))))
liszero = L(1, A(A(1, L(2, lfalse)), ltrue))
# Church numerals
lzero = lfalse
lone = L(1, L(2, A(1, 2)))
ltwo = L(1, L(2, A(1, A(1, 2))))
lthree = L(1, L(2, A(1, A(1, A(1, 2)))))
lfour = L(1, L(2, A(1, A(1, A(1, A(1, 2))))))
lfive = L(1, L(2, A(1, A(1, A(1, A(1, A(1, 2)))))))
lsix = L(1, L(2, A(1, A(1, A(1, A(1, A(1, A(1, 2))))))))
lseven = L(1, L(2, A(1, A(1, A(1, A(1, A(1, A(1, A(1, 2)))))))))
leight = L(1, L(2, A(1, A(1, A(1, A(1, A(1, A(1, A(1, A(1, 2))))))))))
lnine = L(1, L(2, A(1, A(1, A(1, A(1, A(1, A(1, A(1, A(1, A(1, 2)))))))))))


# Tests
assert eq(red(A(A(A(S, K), I), A(A(K, I), S))), I)
assert eq(red(A(A(A(S, K), S), K)), K)
assert eq(red(A(A(A(S, K), I), K)), K)
assert eq(red(A(A(K, S), A(I, A(A(A(S, K), S), I)))), S)
# eta reduction
assert eq(red(L(1, A(L(2, A(2, 2)), 1))), L(1, A(1, 1)))
# Rename bound variable in lambda after name collision
assert eq(red(A(K, K)), L(1, L(2, L(3, 2))))
# Avoid name capture of bound variables
# https://www.cs.yale.edu/homes/hudak/CS201S08/lambda.pdf
assert eq(red(A(L(1, L(2, 1)), 2)), L(2, 3))
# Should two free vars refer to the same var??
# Like maybe we should just assume all vars are bound above us somewhere
# I think that massively simplifies the code, since then red doesn't need to track currently bound vars
# I should choose the one that makes for better puzzles
assert eq(red(A(L(1, A(2, 1)), 2)), A(2, 2))


# Brute force!!
def solve(terms, moves, depth):
    cnt = sum(type(term) is int for term in terms)
    if cnt == len(terms):
        print(moves)
        return
    if len(terms) - cnt > depth:
        # Can only increase cnt by one per turn anyways
        return
    for i in range(len(terms)):
        for j in range(len(terms)):
            newterms = terms.copy()
            try:
                newterms[j] = red_dumb(A(terms[i], terms[j]))
                # if size(newterms[j]) > 50:
                # Heuristic: stop if term is blowing up
                # continue
            except:
                continue
            solve(newterms, moves + [i, j], depth - 1)


if __name__ == "__main__":
    sys.setrecursionlimit(50)
    # solve([A(1, 3), L(5, L(2, 5)), L(1, L(2, 2))], [], 9)