diff options
author | Marvin Borner | 2023-05-22 12:31:05 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-22 12:31:05 +0200 |
commit | c1ce8eb719a95b22fea8e6220bf407d2eb7447b3 (patch) | |
tree | cdec2e905982e196cfb9e5b5c60d6c9d96666f92 /src/build.c | |
parent | cbb215c7f8f78f0a54c22fa90569733bef05907e (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.c | 2 |
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); |