Skip to content

Commit

Permalink
fixed type bug: bool to lbool
Browse files Browse the repository at this point in the history
  • Loading branch information
veanes committed Aug 21, 2020
1 parent 7b478c8 commit 8285162
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast/seq_decl_plugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ class seq_util {
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). */
Expand Down

0 comments on commit 8285162

Please sign in to comment.