3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-19 13:35:33 +00:00

elaborate on narrow

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-12-15 10:13:33 -08:00
parent 12fe964ea5
commit a6684824c1
4 changed files with 118 additions and 37 deletions

View file

@ -6,11 +6,11 @@ Module Name:
Op constraint.
lshr: r == p >> q
ashr: r == p >> q
ashr: r == p >>a q
lshl: r == p << q
and: r == p & q
or: r == p | q
neg: r == ~p
not: r == ~p
xor: r == p ^ q
Author: