3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-29 09:28:45 +00:00

add missing digit axioms

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-19 11:12:37 -07:00
parent 99c90d2419
commit b92b6c0fc6
3 changed files with 38 additions and 30 deletions

View file

@ -197,6 +197,7 @@ namespace smt {
for (auto & kv : sorted_exprs) {
expr* e = kv.first;
if (!is_app(e) ||
!m.is_bool(e) ||
to_app(e)->get_family_id() == null_family_id ||
to_app(e)->get_family_id() == m.get_basic_family_id())
internalize_rec(e, kv.second);