// Copyright (c) 2023, Marvin Borner // SPDX-License-Identifier: MIT #include #include #include #include #include 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); }