mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
... and backtracking for bits
This commit is contained in:
parent
173fb9c2bd
commit
674e309fa3
4 changed files with 159 additions and 71 deletions
|
@ -27,10 +27,10 @@ Revision History:
|
|||
class tbv;
|
||||
|
||||
enum tbit {
|
||||
BIT_z = 0x0,
|
||||
BIT_0 = 0x1,
|
||||
BIT_1 = 0x2,
|
||||
BIT_x = 0x3
|
||||
BIT_z = 0x0, // unknown
|
||||
BIT_0 = 0x1, // for sure 0
|
||||
BIT_1 = 0x2, // for sure 1
|
||||
BIT_x = 0x3 // don't care
|
||||
};
|
||||
|
||||
inline tbit neg(tbit t) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue