- A preview release has finally come.
- Statically linked Linux executable under License LGPL
-
Fix multi-param datatype constructors
-
Fix throwing exceptions
-
Fix the use of some JS specific features in CodeGen:
PS codegen uses JS tricks like
"a" + ["b", "c"] == "ab,c", we change the generated code likethrow new Error("a" + ["b", "c"])tothrow Error("a" + ",".join(["b", "c"])).*Further optimizations can be done later.
- codegen behavior: add default value
Nonefor each function argument. fix #10 - faster codegen: avoid pretty print when not specified. #13
- lighter volume: for generated files. type level computing can produce huge amount of code, to make generated code Git maintainable, we use bzip2 to compress stuffs. #13
- options for pspy-blueprint changed.
- special optimization for repeating indices and attribute access.
- the
topdownfile format to allow Python to load large scale code. - tagless final approach to support multiple data formats of output IR for codegen,
check
Topdown/{Raw.hs, Topdown.hs, Pretty.hs}..