mirror of
https://github.com/Z3Prover/z3
synced 2025-06-27 08:28:44 +00:00
track assumptions when parsing into a solver. This enables solver.from_file/solver.from_string to support assumptions/cores #6587
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3dc91de531
commit
9ce5fe707d
4 changed files with 17 additions and 13 deletions
|
@ -314,8 +314,11 @@ extern "C" {
|
|||
bool initialized = to_solver(s)->m_solver.get() != nullptr;
|
||||
if (!initialized)
|
||||
init_solver(c, s);
|
||||
for (expr* e : ctx->tracked_assertions())
|
||||
to_solver(s)->assert_expr(e);
|
||||
for (auto const& [asr, an] : ctx->tracked_assertions())
|
||||
if (an)
|
||||
to_solver(s)->assert_expr(asr, an);
|
||||
else
|
||||
to_solver(s)->assert_expr(asr);
|
||||
ctx->reset_tracked_assertions();
|
||||
to_solver_ref(s)->set_model_converter(ctx->get_model_converter());
|
||||
auto* ctx_s = ctx->get_solver();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue