mirror of
https://github.com/Z3Prover/z3
synced 2025-08-26 13:06:05 +00:00
refactor
This commit is contained in:
parent
9f05f645c1
commit
06e6f27614
6 changed files with 41 additions and 77 deletions
|
@ -133,10 +133,10 @@ namespace polysat {
|
|||
void init(signed_constraint c);
|
||||
/** boolean conflict with the given clause */
|
||||
void init(clause const& cl);
|
||||
/** conflict because there is no viable value for the variable v */
|
||||
void init(pvar v, bool by_viable_fallback);
|
||||
/** start empty conflict, constraints to be added by caller */
|
||||
void init_empty(); // TODO: remove... rather have all types of conflicts explicitly listed here.
|
||||
/** conflict because there is no viable value for the variable v, by interval reasoning */
|
||||
void init_by_viable_interval(pvar v);
|
||||
/** conflict because there is no viable value for the variable v, by fallback solver */
|
||||
void init_by_viable_fallback(pvar v, univariate_solver& us);
|
||||
|
||||
#if 0
|
||||
/** replace the current conflict by a single constraint */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue