mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
took care of PR comments and fixed some info calculation bugs
This commit is contained in:
parent
738d091b58
commit
48792581eb
|
@ -1624,7 +1624,8 @@ seq_util::rex::info seq_util::rex::get_info_rec(expr* e) const {
|
||||||
if (result.is_valid())
|
if (result.is_valid())
|
||||||
return result;
|
return result;
|
||||||
if (!is_app(e))
|
if (!is_app(e))
|
||||||
return invalid_info;
|
result = unknown_info;
|
||||||
|
else
|
||||||
result = mk_info_rec(to_app(e));
|
result = mk_info_rec(to_app(e));
|
||||||
m_infos.setx(e->get_id(), result, invalid_info);
|
m_infos.setx(e->get_id(), result, invalid_info);
|
||||||
STRACE("re_info", tout << "compute_info(" << pp(u.re, e) << ")=" << result << std::endl;);
|
STRACE("re_info", tout << "compute_info(" << pp(u.re, e) << ")=" << result << std::endl;);
|
||||||
|
@ -1639,6 +1640,7 @@ seq_util::rex::info seq_util::rex::mk_info_rec(app* e) const {
|
||||||
info i1, i2;
|
info i1, i2;
|
||||||
lbool nullable(l_false);
|
lbool nullable(l_false);
|
||||||
unsigned min_length(0), lower_bound(0);
|
unsigned min_length(0), lower_bound(0);
|
||||||
|
bool is_value(false);
|
||||||
bool normalized(false);
|
bool normalized(false);
|
||||||
if (e->get_family_id() == u.get_family_id()) {
|
if (e->get_family_id() == u.get_family_id()) {
|
||||||
switch (e->get_decl()->get_decl_kind())
|
switch (e->get_decl()->get_decl_kind())
|
||||||
|
@ -1649,10 +1651,10 @@ seq_util::rex::info seq_util::rex::mk_info_rec(app* e) const {
|
||||||
return info(true, true, true, true, true, true, false, l_true, 0, 1);
|
return info(true, true, true, true, true, true, false, l_true, 0, 1);
|
||||||
case OP_RE_STAR:
|
case OP_RE_STAR:
|
||||||
i1 = get_info_rec(e->get_arg(0));
|
i1 = get_info_rec(e->get_arg(0));
|
||||||
return info(i1.classical, i1.classical, i1.interpreted, i1.nonbranching, i1.normalized, i1.monadic, false, l_true, 0, i1.star_height + 1);
|
return i1.star();
|
||||||
case OP_RE_OPTION:
|
case OP_RE_OPTION:
|
||||||
i1 = get_info_rec(e->get_arg(0));
|
i1 = get_info_rec(e->get_arg(0));
|
||||||
return info(i1.classical, i1.classical, i1.interpreted, i1.nonbranching, i1.normalized, i1.monadic, false, l_true, 0, i1.star_height);
|
return i1.opt();
|
||||||
case OP_RE_RANGE:
|
case OP_RE_RANGE:
|
||||||
case OP_RE_FULL_CHAR_SET:
|
case OP_RE_FULL_CHAR_SET:
|
||||||
case OP_RE_OF_PRED:
|
case OP_RE_OF_PRED:
|
||||||
|
@ -1662,94 +1664,50 @@ seq_util::rex::info seq_util::rex::mk_info_rec(app* e) const {
|
||||||
case OP_RE_CONCAT:
|
case OP_RE_CONCAT:
|
||||||
i1 = get_info_rec(e->get_arg(0));
|
i1 = get_info_rec(e->get_arg(0));
|
||||||
i2 = get_info_rec(e->get_arg(1));
|
i2 = get_info_rec(e->get_arg(1));
|
||||||
return info(i1.classical & i2.classical,
|
return i1.concat(i2, u.re.is_concat(e->get_arg(0)));
|
||||||
i1.classical && i2.classical, //both args of concat must be classical for it to be standard
|
|
||||||
i1.interpreted && i2.interpreted,
|
|
||||||
i1.nonbranching && i2.nonbranching,
|
|
||||||
(i1.normalized && !u.re.is_concat(e->get_arg(0)) && i2.normalized),
|
|
||||||
i1.monadic && i2.monadic,
|
|
||||||
false,
|
|
||||||
((i1.nullable == l_false || i2.nullable == l_false) ? l_false : ((i1.nullable == l_true && i2.nullable == l_true) ? l_true : l_undef)),
|
|
||||||
u.max_plus(i1.min_length, i2.min_length),
|
|
||||||
std::max(i1.star_height, i2.star_height));
|
|
||||||
case OP_RE_UNION:
|
case OP_RE_UNION:
|
||||||
i1 = get_info_rec(e->get_arg(0));
|
i1 = get_info_rec(e->get_arg(0));
|
||||||
i2 = get_info_rec(e->get_arg(1));
|
i2 = get_info_rec(e->get_arg(1));
|
||||||
return info(i1.classical & i2.classical,
|
return i1.disj(i2);
|
||||||
i1.standard && i2.standard,
|
|
||||||
i1.interpreted && i2.interpreted,
|
|
||||||
i1.nonbranching && i2.nonbranching,
|
|
||||||
i1.normalized && i2.normalized,
|
|
||||||
i1.monadic && i2.monadic,
|
|
||||||
i1.singleton && i2.singleton,
|
|
||||||
((i1.nullable == l_true || i2.nullable == l_true) ? l_true : ((i1.nullable == l_false && i2.nullable == l_false) ? l_false : l_undef)),
|
|
||||||
std::min(i1.min_length, i2.min_length),
|
|
||||||
std::max(i1.star_height, i2.star_height));
|
|
||||||
case OP_RE_INTERSECT:
|
case OP_RE_INTERSECT:
|
||||||
i1 = get_info_rec(e->get_arg(0));
|
i1 = get_info_rec(e->get_arg(0));
|
||||||
i2 = get_info_rec(e->get_arg(1));
|
i2 = get_info_rec(e->get_arg(1));
|
||||||
return info(false,
|
return i1.conj(i2);
|
||||||
i1.standard && i2.standard,
|
|
||||||
i1.interpreted && i2.interpreted,
|
|
||||||
i1.nonbranching && i2.nonbranching,
|
|
||||||
i1.normalized && i2.normalized,
|
|
||||||
i1.monadic && i2.monadic,
|
|
||||||
i1.singleton && i2.singleton,
|
|
||||||
((i1.nullable == l_true && i2.nullable == l_true) ? l_true : ((i1.nullable == l_false || i2.nullable == l_false) ? l_false : l_undef)),
|
|
||||||
std::max(i1.min_length, i2.min_length),
|
|
||||||
std::max(i1.star_height, i2.star_height));
|
|
||||||
case OP_SEQ_TO_RE:
|
case OP_SEQ_TO_RE:
|
||||||
//TBD: the sequence is not a concrete value
|
|
||||||
min_length = u.str.min_length(e->get_arg(0));
|
min_length = u.str.min_length(e->get_arg(0));
|
||||||
return info(true, true, true, true, true, true, (min_length == 1 && u.str.max_length(e->get_arg(0)) == 1), l_false, min_length, 0);
|
is_value = m.is_value(e->get_arg(0));
|
||||||
|
nullable = (is_value && min_length == 0 ? l_true : (min_length > 0 ? l_false : l_undef));
|
||||||
|
return info(true, true, is_value, true, true, true, (min_length == 1 && u.str.max_length(e->get_arg(0)) == 1), nullable, min_length, 0);
|
||||||
case OP_RE_REVERSE:
|
case OP_RE_REVERSE:
|
||||||
return get_info_rec(e->get_arg(0));
|
return get_info_rec(e->get_arg(0));
|
||||||
case OP_RE_PLUS:
|
case OP_RE_PLUS:
|
||||||
i1 = get_info_rec(e->get_arg(0));
|
i1 = get_info_rec(e->get_arg(0));
|
||||||
//r+ is not normalized if r is nullable, the normalized form would be r*
|
return i1.plus();
|
||||||
return info(i1.classical, i1.classical, i1.interpreted, i1.nonbranching, (i1.nullable == l_false ? i1.normalized : false), i1.monadic, false, l_true, 0, i1.star_height + 1);
|
|
||||||
case OP_RE_COMPLEMENT:
|
case OP_RE_COMPLEMENT:
|
||||||
i1 = get_info_rec(e->get_arg(0));
|
i1 = get_info_rec(e->get_arg(0));
|
||||||
nullable = (i1.nullable == l_true ? l_false : (i1.nullable == l_false ? l_true : l_undef));
|
return i1.compl();
|
||||||
min_length = (nullable == l_false ? 1 : 0);
|
|
||||||
return info(false, i1.standard, i1.interpreted, i1.nonbranching, i1.normalized, i1.monadic, false, nullable, min_length, i1.star_height);
|
|
||||||
case OP_RE_LOOP:
|
case OP_RE_LOOP:
|
||||||
i1 = get_info_rec(e->get_arg(0));
|
i1 = get_info_rec(e->get_arg(0));
|
||||||
lower_bound = e->get_decl()->get_parameter(0).get_int();
|
lower_bound = e->get_decl()->get_parameter(0).get_int();
|
||||||
//r{l,m} is not normalized if r is nullable but l > 0
|
return i1.loop(lower_bound);
|
||||||
normalized = (i1.nullable == l_false && lower_bound > 0 ? false : i1.normalized);
|
|
||||||
nullable = (i1.nullable == l_true || lower_bound == 0 ? l_true : i1.nullable);
|
|
||||||
return info(i1.classical, i1.classical, i1.interpreted, i1.nonbranching, normalized, i1.singleton, false, nullable, u.max_mul(i1.min_length, lower_bound), i1.star_height);
|
|
||||||
case OP_RE_DIFF:
|
case OP_RE_DIFF:
|
||||||
i1 = get_info_rec(e->get_arg(0));
|
i1 = get_info_rec(e->get_arg(0));
|
||||||
i2 = get_info_rec(e->get_arg(1));
|
i2 = get_info_rec(e->get_arg(1));
|
||||||
return info(false,
|
return i1.diff(i2);
|
||||||
i1.standard & i2.standard,
|
|
||||||
i1.interpreted & i2.interpreted,
|
|
||||||
i1.nonbranching & i2.nonbranching,
|
|
||||||
i1.normalized & i2.normalized,
|
|
||||||
i1.monadic & i2.monadic,
|
|
||||||
false,
|
|
||||||
((i1.nullable == l_true && i2.nullable == l_false) ? l_true : ((i1.nullable == l_false || i2.nullable == l_false) ? l_false : l_undef)),
|
|
||||||
std::max(i1.min_length, i2.min_length),
|
|
||||||
std::max(i1.star_height, i2.star_height));
|
|
||||||
}
|
}
|
||||||
return invalid_info;
|
return unknown_info;
|
||||||
}
|
}
|
||||||
expr* c, * t, * f;
|
expr* c, * t, * f;
|
||||||
if (u.m.is_ite(e, c, t, f)) {
|
if (u.m.is_ite(e, c, t, f)) {
|
||||||
i1 = get_info_rec(t);
|
i1 = get_info_rec(t);
|
||||||
i2 = get_info_rec(f);
|
i2 = get_info_rec(f);
|
||||||
min_length = std::min(i1.min_length, i2.min_length);
|
return i1.orelse(i2);
|
||||||
nullable = (i1.nullable == i2.nullable ? i1.nullable : l_undef);
|
|
||||||
//TBD: whether ite is interpreted or not depends on whether the condition is interpreted and both branches are interpreted
|
|
||||||
return info(false, false, false, false, i1.normalized && i2.normalized, i1.monadic && i2.monadic, i1.singleton && i2.singleton, nullable, min_length, std::max(i1.star_height, i2.star_height));
|
|
||||||
}
|
}
|
||||||
return invalid_info;
|
return unknown_info;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::ostream& seq_util::rex::info::display(std::ostream& out) const {
|
std::ostream& seq_util::rex::info::display(std::ostream& out) const {
|
||||||
if (valid) {
|
if (is_known()) {
|
||||||
out << "info("
|
out << "info("
|
||||||
<< "nullable=" << (nullable == l_true ? "T" : (nullable == l_false ? "F" : "U")) << ", "
|
<< "nullable=" << (nullable == l_true ? "T" : (nullable == l_false ? "F" : "U")) << ", "
|
||||||
<< "classical=" << (classical ? "T" : "F") << ", "
|
<< "classical=" << (classical ? "T" : "F") << ", "
|
||||||
|
@ -1761,8 +1719,10 @@ std::ostream& seq_util::rex::info::display(std::ostream& out) const {
|
||||||
<< "min_length=" << min_length << ", "
|
<< "min_length=" << min_length << ", "
|
||||||
<< "star_height=" << star_height << ")";
|
<< "star_height=" << star_height << ")";
|
||||||
}
|
}
|
||||||
|
else if (is_valid())
|
||||||
|
out << "UNKNOWN";
|
||||||
else
|
else
|
||||||
out << "UNDEF";
|
out << "INVALID";
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1775,4 +1735,147 @@ std::string seq_util::rex::info::str() const {
|
||||||
return out.str();
|
return out.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
seq_util::rex::info seq_util::rex::info::star() const {
|
||||||
|
//if is_known() is false then all mentioned properties will remain false
|
||||||
|
return seq_util::rex::info(classical, classical, interpreted, nonbranching, normalized, monadic, false, l_true, 0, star_height + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
seq_util::rex::info seq_util::rex::info::plus() const {
|
||||||
|
if (is_known()) {
|
||||||
|
//r+ is not normalized if r is nullable, the normalized form would be r*
|
||||||
|
info(classical, classical, interpreted, nonbranching, (nullable == l_false ? normalized : false), monadic, false, nullable, min_length, star_height + 1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
seq_util::rex::info seq_util::rex::info::opt() const {
|
||||||
|
//if is_known() is false then all mentioned properties will remain false
|
||||||
|
return seq_util::rex::info(classical, classical, interpreted, nonbranching, normalized, monadic, false, l_true, 0, star_height);
|
||||||
|
}
|
||||||
|
|
||||||
|
seq_util::rex::info seq_util::rex::info::compl() const {
|
||||||
|
if (is_known()) {
|
||||||
|
lbool compl_nullable = (nullable == l_true ? l_false : (nullable == l_false ? l_true : l_undef));
|
||||||
|
unsigned compl_min_length = (compl_nullable == l_false ? 1 : 0);
|
||||||
|
return info(false, standard, interpreted, nonbranching, normalized, monadic, false, compl_nullable, compl_min_length, star_height);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
seq_util::rex::info seq_util::rex::info::concat(seq_util::rex::info & rhs, bool lhs_is_concat) const {
|
||||||
|
if (is_known()) {
|
||||||
|
if (rhs.is_known()) {
|
||||||
|
unsigned m = min_length + rhs.min_length;
|
||||||
|
if (m < min_length || m < rhs.min_length)
|
||||||
|
m = UINT_MAX;
|
||||||
|
return info(classical & rhs.classical,
|
||||||
|
classical && rhs.classical, //both args of concat must be classical for it to be standard
|
||||||
|
interpreted && rhs.interpreted,
|
||||||
|
nonbranching && rhs.nonbranching,
|
||||||
|
(normalized && !lhs_is_concat && rhs.normalized),
|
||||||
|
monadic && rhs.monadic,
|
||||||
|
false,
|
||||||
|
((nullable == l_false || rhs.nullable == l_false) ? l_false : ((nullable == l_true && rhs.nullable == l_true) ? l_true : l_undef)),
|
||||||
|
m,
|
||||||
|
std::max(star_height, rhs.star_height));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return rhs;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
seq_util::rex::info seq_util::rex::info::disj(seq_util::rex::info& rhs) const {
|
||||||
|
if (is_known() || rhs.is_known()) {
|
||||||
|
//works correctly if one of the arguments is unknown
|
||||||
|
info(classical & rhs.classical,
|
||||||
|
standard && rhs.standard,
|
||||||
|
interpreted && rhs.interpreted,
|
||||||
|
nonbranching && rhs.nonbranching,
|
||||||
|
normalized && rhs.normalized,
|
||||||
|
monadic && rhs.monadic,
|
||||||
|
singleton && rhs.singleton,
|
||||||
|
((nullable == l_true || rhs.nullable == l_true) ? l_true : ((nullable == l_false && rhs.nullable == l_false) ? l_false : l_undef)),
|
||||||
|
std::min(min_length, rhs.min_length),
|
||||||
|
std::max(star_height, rhs.star_height));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return rhs;
|
||||||
|
}
|
||||||
|
|
||||||
|
seq_util::rex::info seq_util::rex::info::conj(seq_util::rex::info& rhs) const {
|
||||||
|
if (is_known()) {
|
||||||
|
if (rhs.is_known()) {
|
||||||
|
return info(false,
|
||||||
|
standard && rhs.standard,
|
||||||
|
interpreted && rhs.interpreted,
|
||||||
|
nonbranching && rhs.nonbranching,
|
||||||
|
normalized && rhs.normalized,
|
||||||
|
monadic && rhs.monadic,
|
||||||
|
singleton && rhs.singleton,
|
||||||
|
((nullable == l_true && rhs.nullable == l_true) ? l_true : ((nullable == l_false || rhs.nullable == l_false) ? l_false : l_undef)),
|
||||||
|
std::max(min_length, rhs.min_length),
|
||||||
|
std::max(star_height, rhs.star_height));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return rhs;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
seq_util::rex::info seq_util::rex::info::diff(seq_util::rex::info& rhs) const {
|
||||||
|
if (is_known()) {
|
||||||
|
if (rhs.is_known()) {
|
||||||
|
info(false,
|
||||||
|
standard & rhs.standard,
|
||||||
|
interpreted & rhs.interpreted,
|
||||||
|
nonbranching & rhs.nonbranching,
|
||||||
|
normalized & rhs.normalized,
|
||||||
|
monadic & rhs.monadic,
|
||||||
|
false,
|
||||||
|
((nullable == l_true && rhs.nullable == l_false) ? l_true : ((nullable == l_false || rhs.nullable == l_false) ? l_false : l_undef)),
|
||||||
|
std::max(min_length, rhs.min_length),
|
||||||
|
std::max(star_height, rhs.star_height));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return rhs;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
seq_util::rex::info seq_util::rex::info::orelse(seq_util::rex::info& i) const {
|
||||||
|
if (is_known()) {
|
||||||
|
if (i.is_known()) {
|
||||||
|
unsigned ite_min_length = std::min(min_length, i.min_length);
|
||||||
|
lbool ite_nullable = (nullable == i.nullable ? nullable : l_undef);
|
||||||
|
//TBD: whether ite is interpreted or not depends on whether the condition is interpreted and both branches are interpreted
|
||||||
|
return info(false, false, false, false, normalized && i.normalized, monadic && i.monadic, singleton && i.singleton, nullable, min_length, std::max(star_height, i.star_height));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
seq_util::rex::info seq_util::rex::info::loop(unsigned lower) const {
|
||||||
|
if (is_known()) {
|
||||||
|
//r{l,m} is not normalized if r is nullable but l > 0
|
||||||
|
unsigned m = min_length * lower;
|
||||||
|
if (m < min_length || m < lower)
|
||||||
|
m = UINT_MAX;
|
||||||
|
bool loop_normalized = (nullable == l_false && lower > 0 ? false : normalized);
|
||||||
|
lbool loop_nullable = (nullable == l_true || lower == 0 ? l_true : nullable);
|
||||||
|
//TBD: pass also upper bound and if upper bound is UINT_MAX then this is * and the loop is thus not normalized
|
||||||
|
return info(classical, classical, interpreted, nonbranching, loop_normalized, singleton, false, loop_nullable, m, star_height);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -412,33 +412,38 @@ public:
|
||||||
class rex {
|
class rex {
|
||||||
public:
|
public:
|
||||||
struct info {
|
struct info {
|
||||||
/* Value is well-defined. */
|
/* Value is either undefined (known=l_undef) or defined and known (l_true) or defined but unknown (l_false)*/
|
||||||
bool valid;
|
bool 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;
|
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). */
|
||||||
bool standard;
|
bool standard{ false };
|
||||||
/* There are no uninterpreted symbols. */
|
/* There are no uninterpreted symbols. */
|
||||||
bool interpreted;
|
bool interpreted{ false };
|
||||||
/* No if-then-else is used. */
|
/* No if-then-else is used. */
|
||||||
bool nonbranching;
|
bool nonbranching{ false };
|
||||||
/* Concatenations are right associative and if a loop body is nullable then the lower bound is zero. */
|
/* Concatenations are right associative and if a loop body is nullable then the lower bound is zero. */
|
||||||
bool normalized;
|
bool normalized{ false };
|
||||||
/* All bounded loops have a body that is a singleton. */
|
/* All bounded loops have a body that is a singleton. */
|
||||||
bool monadic;
|
bool monadic{ false };
|
||||||
/* Positive Boolean combination of ranges or predicates or singleton sequences. */
|
/* Positive Boolean combination of ranges or predicates or singleton sequences. */
|
||||||
bool singleton;
|
bool singleton{ false };
|
||||||
/* If l_true then empty word is accepted, if l_false then empty word is not accepted. */
|
/* If l_true then empty word is accepted, if l_false then empty word is not accepted. */
|
||||||
lbool nullable;
|
lbool nullable{ l_false };
|
||||||
/* Lower bound on the length of all accepted words. */
|
/* Lower bound on the length of all accepted words. */
|
||||||
unsigned min_length;
|
unsigned min_length{ 0 };
|
||||||
/* Maximum nesting depth of Kleene stars. */
|
/* Maximum nesting depth of Kleene stars. */
|
||||||
unsigned star_height;
|
unsigned star_height{ 0 };
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Constructs an invalid info
|
Default constructor of invalid info.
|
||||||
*/
|
*/
|
||||||
info() : valid(false) {}
|
info() {}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Used for constructing either an invalid info that is only used to indicate uninitialzed entry, or valid but unknown info value.
|
||||||
|
*/
|
||||||
|
info(lbool is_known) : known(is_known) {}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
General info constructor.
|
General info constructor.
|
||||||
|
@ -453,8 +458,8 @@ public:
|
||||||
lbool is_nullable,
|
lbool is_nullable,
|
||||||
unsigned min_l,
|
unsigned min_l,
|
||||||
unsigned star_h) :
|
unsigned star_h) :
|
||||||
valid(true), classical(is_classical), standard(is_standard), interpreted(is_interpreted), nonbranching(is_nonbranching),
|
known(l_true), classical(is_classical), standard(is_standard), interpreted(is_interpreted), nonbranching(is_nonbranching),
|
||||||
normalized(is_normalized), monadic(is_monadic), nullable(is_nullable), singleton(is_singleton),
|
normalized(is_normalized), monadic(is_monadic), singleton(is_singleton), nullable(is_nullable),
|
||||||
min_length(min_l), star_height(star_h) {}
|
min_length(min_l), star_height(star_h) {}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -467,7 +472,20 @@ public:
|
||||||
*/
|
*/
|
||||||
std::string str() const;
|
std::string str() const;
|
||||||
|
|
||||||
bool is_valid() const { return valid; }
|
bool is_valid() const { return known != l_undef; }
|
||||||
|
|
||||||
|
bool is_known() const { return known == l_true; }
|
||||||
|
|
||||||
|
info star() const;
|
||||||
|
info plus() const;
|
||||||
|
info opt() const;
|
||||||
|
info concat(info & rhs, bool lhs_is_concat) const;
|
||||||
|
info disj(info& rhs) const;
|
||||||
|
info conj(info& rhs) const;
|
||||||
|
info diff(info& rhs) const;
|
||||||
|
info orelse(info& rhs) const;
|
||||||
|
info loop(unsigned lower) const;
|
||||||
|
info compl() const;
|
||||||
};
|
};
|
||||||
private:
|
private:
|
||||||
seq_util& u;
|
seq_util& u;
|
||||||
|
@ -475,7 +493,8 @@ public:
|
||||||
family_id m_fid;
|
family_id m_fid;
|
||||||
vector<info> mutable m_infos;
|
vector<info> mutable m_infos;
|
||||||
expr_ref_vector mutable m_info_pinned;
|
expr_ref_vector mutable m_info_pinned;
|
||||||
info invalid_info;
|
info invalid_info{ info(l_undef) };
|
||||||
|
info unknown_info{ info(l_false) };
|
||||||
|
|
||||||
bool has_valid_info(expr* r) const;
|
bool has_valid_info(expr* r) const;
|
||||||
info get_info_rec(expr* r) const;
|
info get_info_rec(expr* r) const;
|
||||||
|
|
Loading…
Reference in a new issue