Aaron Bembenek

Results 8 issues of Aaron Bembenek

We could use a nice introduction to the language. Optimally, it would build up to an interesting example Formulog program (such as a symbolic evaluator for a simple input language).

enhancement
documentation

We should support character literals like `'a'`. At a minimum, we could restrict support to the front end, where they could be converted to `i32`s.

enhancement

We support different ways of interacting with the back-end SMT solver(s). These include strategies that reset the solver state between queries, as well as different approaches to caching queries to...

documentation

The Formulog-to-Souffle transpiler generates invalid query plans in the presence of the `CODEGEN_PROJECT` relation, which it seems to treat as being in the same stratum as the predicate being defined....

bug
compiler

Right now, the Formulog version is hard-coded into the CLI, which is easy to forget to update (see #25). Instead, the version should be stored in the JAR (and maybe...

enhancement

Right now, Formulog is parameterized by a mix of system properties (like `-DdebugSmt`) and proper flags (like `--dump-idb`). For the sake of consistency and usability, we should convert user-relevant system...

enhancement

As a convenience, allows users to specify options in a configuration file, instead of requiring them to list the options on the command line.

enhancement

I tried this program ```console root@d769dccd107c:~# cat broken.dl .type Pair = [x:number, y:number] .functor mypair():Pair stateful .decl P(x:number, y:number) P(x, y) :- [x, y] = @mypair(). .output P ``` and...

enhancement