3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 13:06:05 +00:00

more tactic descriptions

This commit is contained in:
Nikolaj Bjorner 2023-01-05 20:23:01 -08:00
parent 0d8a472aac
commit c07b6ab38f
10 changed files with 233 additions and 46 deletions

View file

@ -9,6 +9,14 @@ Author:
Mikolas Janota
Tactic Documentation
## Tactic bv_bound_chk
### Short Description
Attempts to detect inconsistencies of bounds on bv expressions.
### Notes
* does not support proofs, does not support cores

View file

@ -13,6 +13,34 @@ Author:
Nikolaj Bjorner (nbjorner) 2022-10-30
Tactic Documentation
## Tactic bv-slice
### Short Description
Slices bit-vectors into sub-ranges to allow simplifying sub-ranges.
### Long Description
It rewrites a state using bit-vector slices.
Slices are extracted from bit-vector equality assertions.
An equality assertion may equate a sub-range of a bit-vector
with a constant. The tactic ensures that all occurrences of the
subrange are replaced by the constants to allow additional
simplification
### Example
```z3 ignore-errors
(declare-const x (_ BitVec 32))
(declare-const y (_ BitVec 32))
(assert (= ((_ extract 31 16) x) (_ bv123 16)))
(assert (= ((_ extract 15 0) x) ((_ extract 16 1) y)))
(assert (= (bvadd x x) y))
(apply bv-slice)
```
--*/
#pragma once