mirror of
https://github.com/Z3Prover/z3
synced 2025-08-03 09:50:23 +00:00
Add initial value setting for variables in Z3 API, solver, and optimize modules
This commit is contained in:
parent
0ba306e7b3
commit
48712b4f60
31 changed files with 297 additions and 9 deletions
|
@ -252,6 +252,10 @@ namespace {
|
|||
m_context.user_propagate_register_decide(c);
|
||||
}
|
||||
|
||||
void user_propagate_initialize_value(expr* var, expr* value) override {
|
||||
m_context.user_propagate_initialize_value(var, value);
|
||||
}
|
||||
|
||||
struct scoped_minimize_core {
|
||||
smt_solver& s;
|
||||
expr_ref_vector m_assumptions;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue