mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
fixed type bug: bool to lbool
This commit is contained in:
parent
7b478c8406
commit
8285162c3c
|
@ -413,7 +413,7 @@ public:
|
||||||
public:
|
public:
|
||||||
struct info {
|
struct info {
|
||||||
/* Value is either undefined (known=l_undef) or defined and known (l_true) or defined but unknown (l_false)*/
|
/* Value is either undefined (known=l_undef) or defined and known (l_true) or defined but unknown (l_false)*/
|
||||||
bool known{ l_undef };
|
lbool known{ l_undef };
|
||||||
/* No complement, no intersection, no difference, and no if-then-else is used. Reverse is allowed. */
|
/* No complement, no intersection, no difference, and no if-then-else is used. Reverse is allowed. */
|
||||||
bool classical{ false };
|
bool classical{ false };
|
||||||
/* Boolean-reverse combination of classical regexes (using reverse, union, complement, intersection or difference). */
|
/* Boolean-reverse combination of classical regexes (using reverse, union, complement, intersection or difference). */
|
||||||
|
|
Loading…
Reference in a new issue