3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-17 14:25:35 +00:00
z3/src/muz
Arie Gurfinkel 27d8fa4a34 hard-code quantifier weight to 15
With default settings, the eager threshold is 10 and lazy is 20.  15
puts us in the middle ensuring that lemmas are instantiated when UNSAT
and otherwise delayed.
2018-06-14 16:08:47 -07:00
..
base deprecating interp 2018-05-24 13:12:07 -07:00
bmc Use nullptr. 2018-02-12 14:05:55 +07:00
clp Use nullptr. 2018-02-12 14:05:55 +07:00
dataflow fix build 2017-11-05 19:24:05 -08:00
ddnf Remove int64, uint64 typedefs in favor of int64_t / uint64_t. 2018-03-31 14:45:04 +07:00
fp remove interpolation and duality dependencies 2018-05-24 08:33:48 -07:00
pdr merge with master 2018-03-25 14:57:01 -07:00
rel fix memory leak in relation_manager, use for loops 2018-06-14 10:16:03 -07:00
spacer hard-code quantifier weight to 15 2018-06-14 16:08:47 -07:00
tab merge with master 2018-03-25 14:57:01 -07:00
transforms fix build 2018-05-01 10:53:36 -07:00
README Setting up the lackr branch. 2015-12-16 20:10:14 +00:00

muZ: routines related to solving satisfiability of Horn clauses and 
solving Datalog programs.

- base - contains base routines and the main context for
         maintaining fixedpoint solvers
- transforms - common rule transformations
- rel - relational algebra based Datalog engine
- pdr - PDR based Horn clause solver
- clp - Dart/Symbolic execution-based solver
- tab - Tabulation based solver
- bmc - Bounded model checking based solver
- fp  - main exported routines