1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT
#include <stdio.h>
#include <term.h>
#include <reduce.h>
#include <log.h>
#include <assert.h>
static struct term *substitute(struct term *term, struct term *substitution,
size_t level)
{
if (term->type == VAR) {
if (term->u.var.index == level) {
// TODO: deref index
return substitution;
} else {
return term;
}
} else if (term->type == ABS) {
struct term *new =
substitute(term->u.abs.term, substitution, level + 1);
if (term->u.abs.term->hash == new->hash)
return term; // nothing changed
struct term *rehashed = term_rehash_abs(term, new);
term_rehash_parents(rehashed);
return rehashed;
} else if (term->type == APP) {
struct term *lhs =
substitute(term->u.app.lhs, substitution, level);
struct term *rhs =
substitute(term->u.app.rhs, substitution, level);
if (term->u.app.lhs->hash == lhs->hash &&
term->u.app.rhs->hash == rhs->hash)
return term; // nothing changed
struct term *rehashed = term_rehash_app(term, lhs, rhs);
term_rehash_parents(rehashed);
return rehashed;
}
fatal("invalid type %d\n", term->type);
}
// reduction of application
// ([X] Y) -> X/Y
struct term *reduce(struct term *term)
{
assert(term->type == APP);
assert(term->u.app.lhs->type == ABS);
return substitute(term->u.app.lhs, term->u.app.rhs, -1);
}
|