3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

fixed type bug: bool to lbool

This commit is contained in:
Margus Veanes 2020-08-21 16:11:38 -07:00
parent 7b478c8406
commit 8285162c3c

View file

@ -413,7 +413,7 @@ public:
public:
struct info {
/* 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. */
bool classical{ false };
/* Boolean-reverse combination of classical regexes (using reverse, union, complement, intersection or difference). */