- Dec 17, 2012
-
-
Philippe Suter authored
Evaluators now have a common interface, and need to be instantiated before they can be used. This makes them more like solvers, and allows us to switch between them completely transparently. Evaluators should support `eval` and `compile`. The default implementation for `compile` returns a closure that invokes `eval` each time. `eval` returns one of three results: - EvaluationSuccessful: evaluation terminated with a value - EvaluationFailure: evaluation resulted in a runtime error - EvaluationError: evaluation resulted in an internal error CodeGenEvaluator is a drop-in substitute for DefaultEvaluator. It works by compiling Leon methods to Java bytecode which is loaded dynamically. The `compile` method should be used as much as possible, as `eval` will recompile the expression each time (the functions from the Leon program are always compiled only once, though). CodeGenEvaluator intercepts most runtime errors and rewrites them into `EvaluationFailure` results. Use --codegen to use code generation as the evaluator of choice within FairZ3Solver. (Has no effect if neither --feelinglucky nor --checkmodels is used.) Improvements of EvaluatorsTests testing suite, and verification regression suite is now run twice (with different options). As a result, the original tests for codegen are obsolete.
-
- Dec 15, 2012
-
-
Régis Blanc authored
EmptySet, EmptyMap and SingletonMap are redundant, so they are removed. They are subsumed by FiniteSet and FiniteMap. This commit also deletes two testcases that were testing for equality between EmptySet and FiniteSet of 0 element. Obviously they no longer relevant. Additionnaly, this commit adds some new regression testcases for Maps and Sets.
-
Viktor Kuncak authored
-
Viktor Kuncak authored
-
Régis Blanc authored
-
Etienne Kneuss authored
It might be that the counter example does not specify some input variables if they are not used in the formula.
-
- Dec 14, 2012
-
-
Régis Blanc authored
The testcase is now complete in the sense that the specification for the justify function explicitly describe the final output list of columns, while the previous one could be implicitly computed from the synthesized parameters. It also features a simpler synthesis problem, that should be the first target to solver.
-
Philippe Suter authored
This commit finally ensures that { And, Or, Not } are never nested inside instances of the same class. (The change for And or Or was already made some time ago.)
-
Régis Blanc authored
This is an interesting benchmark from book "The Science of Programming" by David Gries. It consists in synthesizing a function that can justify text.
-
Viktor Kuncak authored
The benchmark searches for a tree representing absolute value.
-
Etienne Kneuss authored
This is now supported in Leon: Map(elem1, elem2, ...) where elem* are Tuple2 literals. In particular we can have: Map(1 -> 2, 3 -> 4, (5, 6))
-
- Dec 13, 2012
-
-
Etienne Kneuss authored
-
Etienne Kneuss authored
-
Etienne Kneuss authored
-
Etienne Kneuss authored
-
Etienne Kneuss authored
-
Philippe Suter authored
(This was a semester project by Octavian-Eugen Ganea, first half of 2011.)
-
Régis Blanc authored
-
Régis Blanc authored
-
Etienne Kneuss authored
-
Régis Blanc authored
-
Régis Blanc authored
-
Etienne Kneuss authored
-
Etienne Kneuss authored
-
Etienne Kneuss authored
sbt now generates two scripts, - ./leon - ./setupenv setupenv needs to be evaluated before doing "sbt test". Make sure you run it using "source ./setupenv" and not "./setupenv" so that the exports contained in setupenv have an effect on the outer shell context. setupenv is used within ./leon as well
-
Régis Blanc authored
-
Etienne Kneuss authored
-
Régis Blanc authored
-
Philippe Suter authored
-
- Dec 12, 2012
-
-
Régis Blanc authored
-
Régis Blanc authored
-
Régis Blanc authored
-
Régis Blanc authored
-
Régis Blanc authored
-
Etienne Kneuss authored
-
Etienne Kneuss authored
-
Etienne Kneuss authored
-
Etienne Kneuss authored
-
Etienne Kneuss authored
-
Etienne Kneuss authored
-