mirror of
https://github.com/Z3Prover/z3
synced 2025-05-11 09:44:43 +00:00
fix #2468, adding assignment phase heuristic
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
42e21458ba
commit
9fa9aa09ff
19 changed files with 268 additions and 79 deletions
|
@ -143,6 +143,13 @@ namespace smt {
|
|||
virtual void assign_eh(bool_var v, bool is_true) {
|
||||
}
|
||||
|
||||
/**
|
||||
\brief use the theory to determine phase of the variable.
|
||||
*/
|
||||
virtual lbool get_phase(bool_var v) {
|
||||
return l_undef;
|
||||
}
|
||||
|
||||
/**
|
||||
\brief Equality propagation (v1 = v2): Core -> Theory
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue