3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-07-20 16:23:01 -07:00
parent 43a19cadf6
commit e593b5b2c8
3 changed files with 12 additions and 9 deletions

View file

@ -4746,6 +4746,9 @@ void theory_seq::add_itos_length_axiom(expr* len) {
literal n_ge_100hi = mk_literal(m_autil.mk_ge(n, m_autil.mk_numeral(ten*ten*hi, true)));
add_axiom(~n_ge_10hi, len_ge);
add_axiom(n_ge_10hi, ~len_ge);
add_axiom(n_ge_100hi, len_le);
add_axiom(~n_ge_100hi, ~len_le);
}