3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-04-02 18:08:57 +00:00

fix CI: add set_lower/upper_int_bound to nielsen_node, fix nseq_basic simplify_and_init call

Agent-Logs-Url: https://github.com/Z3Prover/z3/sessions/68ff7081-aa79-475d-9b6c-181c32e8c983

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-03-31 21:05:44 +00:00
parent 587400bc3d
commit 367ae39a50
3 changed files with 31 additions and 1 deletions

View file

@ -133,7 +133,7 @@ static void test_nseq_node_satisfied() {
SASSERT(node->str_eqs().size() == 1);
SASSERT(!node->str_eqs()[0].is_trivial() || node->str_eqs()[0].m_lhs == node->str_eqs()[0].m_rhs);
// After simplification, trivial equalities should be removed
seq::simplify_result sr = node->simplify_and_init();
seq::simplify_result sr = node->simplify_and_init({});
VERIFY(sr == seq::simplify_result::satisfied || sr == seq::simplify_result::proceed);
std::cout << " ok\n";
}