3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-18 19:14:29 +00:00

Replace lp_simple_solver in nielsen with context_solver using smt::kernel (seq_len)

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-03-10 21:39:29 +00:00
parent a4f2c4a217
commit 5744958e46
5 changed files with 83 additions and 188 deletions

View file

@ -33,7 +33,8 @@ namespace smt {
m_arith_value(ctx.get_manager()),
m_egraph(ctx.get_manager()),
m_sgraph(ctx.get_manager(), m_egraph),
m_nielsen(m_sgraph),
m_context_solver(ctx.get_manager()),
m_nielsen(m_sgraph, &m_context_solver),
m_state(m_sgraph),
m_regex(m_sgraph),
m_model(*this, ctx.get_manager(), m_seq, m_rewriter, m_sgraph, m_regex)