3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-18 06:34:22 +00:00

A slice solver option for interactive use case

A slice solver prunes the set of active assertions based on symbol occurrences in a goal that is tracked as a @query.
Ground assertions that have symbols intersecting with the query are included in the solver state, and quantifiers that with patterns that intersect with the slice are included. The slice is the fixedpoint of including symbols from all included assertions.
Enable the functionality for command-line use by setting solver.slice=true
This commit is contained in:
Nikolaj Bjorner 2024-10-08 09:22:10 -07:00
parent 0fec7efc7b
commit 8a95dd4d65
4 changed files with 465 additions and 0 deletions

View file

@ -6,6 +6,7 @@ z3_add_component(solver
mus.cpp
parallel_tactical.cpp
simplifier_solver.cpp
slice_solver.cpp
smt_logics.cpp
solver.cpp
solver_na2as.cpp