aboutsummaryrefslogtreecommitdiff
path: root/src/build.c
diff options
context:
space:
mode:
authorMarvin Borner2023-05-22 12:31:05 +0200
committerMarvin Borner2023-05-22 12:31:05 +0200
commitc1ce8eb719a95b22fea8e6220bf407d2eb7447b3 (patch)
treecdec2e905982e196cfb9e5b5c60d6c9d96666f92 /src/build.c
parentcbb215c7f8f78f0a54c22fa90569733bef05907e (diff)
Changed order of abstraction and application encodings
This gives some minor space improvements as almost all abstractions imply a following application but not so much with applications. At least by case-analysis :)
Diffstat (limited to 'src/build.c')
-rw-r--r--src/build.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.c b/src/build.c
index 4c26e69..50b565b 100644
--- a/src/build.c
+++ b/src/build.c
@@ -26,12 +26,12 @@ static void rec_write_bblc(struct tree *tree, FILE *file, char *byte, int *bit)
switch (tree->type) {
case ABS:
write_bit(0, file, byte, bit);
+ write_bit(1, file, byte, bit);
write_bit(0, file, byte, bit);
rec_write_bblc(tree->u.abs.term, file, byte, bit);
break;
case APP:
write_bit(0, file, byte, bit);
- write_bit(1, file, byte, bit);
write_bit(0, file, byte, bit);
rec_write_bblc(tree->u.app.lhs, file, byte, bit);
rec_write_bblc(tree->u.app.rhs, file, byte, bit);