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:
parent
7b478c8406
commit
8285162c3c
|
@ -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). */
|
||||
|
|
Loading…
Reference in a new issue