mirror of
https://github.com/Z3Prover/z3
synced 2025-08-21 02:30: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
|
@ -549,6 +549,10 @@ namespace smt {
|
|||
return get_manager().mk_eq(lhs, rhs);
|
||||
}
|
||||
|
||||
virtual void initialize_value(expr* var, expr* value) {
|
||||
IF_VERBOSE(5, verbose_stream() << "no default initialization associated with " << mk_pp(var, m) << " := " << mk_pp(value, m) << "\n");
|
||||
}
|
||||
|
||||
literal mk_eq(expr * a, expr * b, bool gate_ctx);
|
||||
|
||||
literal mk_preferred_eq(expr* a, expr* b);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue