3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-21 06:25:50 +00:00

bugfixes to front-end and matcher

This commit is contained in:
Nikolaj Bjorner 2026-07-06 15:29:02 -07:00
parent 6c8a5cd853
commit 470e966791
8 changed files with 275 additions and 67 deletions

View file

@ -18,6 +18,7 @@
#include "ast/expr_abstract.h"
#include "ast/ast_util.h"
#include "ast/polymorphism_util.h"
#include "ast/well_sorted.h"
#include "ast/rewriter/expr_safe_replace.h"
#include "solver/solver.h"
#include "cmd_context/cmd_context.h"
@ -2461,6 +2462,7 @@ class tptp_parser {
m_has_conjecture = true;
f = m.mk_not(f);
}
SASSERT(is_well_sorted(m, f));
m_cmd.assert_expr(f);
} catch (z3_exception const& ex) {
// Sort mismatch or other semantic error in this formula — skip it.