aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Binary.hs
diff options
context:
space:
mode:
authorMarvin Borner2024-01-19 02:50:49 +0100
committerMarvin Borner2024-01-19 20:39:28 +0100
commitaf754df7380b664fea6295813ee7dc64642c8444 (patch)
tree2fea974fd6e2b5319d1eb33556e821d2a1312be7 /src/Binary.hs
parent3faeba8c3e31bbe254a4facec8704d419e1bbdb8 (diff)
BLoC/BLoCade optimizer integration
In many cases, shared-by-abstraction BLC is more performant (and notably smaller) than the current output where every term just gets substituted (and potentially duplicated) directly. BLoC in combination with BLoCade's shared BLC target optimizes this automatically by trying to find the terms that would most benefit from deduplication and abstracting them respectively. Paging @tromp since we talked about this. This commit also introduces better argument parsing using optparse-applicative.
Diffstat (limited to 'src/Binary.hs')
-rw-r--r--src/Binary.hs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Binary.hs b/src/Binary.hs
index acf20d4..a6e8ceb 100644
--- a/src/Binary.hs
+++ b/src/Binary.hs
@@ -62,5 +62,3 @@ fromJot = worker . reverse
worker ('0' : xs) = Application (Application (worker xs) s) k
worker ('1' : xs) = Application s (Application k (worker xs))
worker _ = Abstraction (Bruijn 0)
-
-