3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00
z3/src/muz
Arie Gurfinkel 6180a5276d
Logging facility for spacer plus minor improvements (#3368)
* [spacer] logging solver events

New option fp.spacer.trace_file='file.log' enables logging solving events
into a file.

These events are useful for debugging the solver, but also for visualizing
the solving process in a variety of ways

* [spacer] allow setting logic for solvers used by spacer

* [spacer] option to set arithmetic solver explicitly

* [spacer] improve of dumping solver_pool state for debugging

* fix propagate_ineqs to handle strict inequality

Co-authored-by: Nham Van Le <nv3le@precious3.eng.uwaterloo.ca>
2020-03-16 20:31:44 -07:00
..
base Logging facility for spacer plus minor improvements (#3368) 2020-03-16 20:31:44 -07:00
bmc Implement get_proof() in bmc and spacer engines 2019-08-12 10:29:01 -07:00
clp purge smt.timeout, use timeout instead to control solver timing #2354 2019-06-21 16:56:24 +02:00
dataflow fix build 2017-11-05 19:24:05 -08:00
ddnf Fix some spelling errors (mostly in comments). 2018-10-20 17:07:41 +02:00
fp fix #3294 2020-03-14 10:46:03 -07:00
rel fix #3004 2020-02-17 19:37:47 -10:00
spacer Logging facility for spacer plus minor improvements (#3368) 2020-03-16 20:31:44 -07:00
tab purge smt.timeout, use timeout instead to control solver timing #2354 2019-06-21 16:56:24 +02:00
transforms Prefer using empty rather than size comparisons. 2018-11-27 21:42:04 +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