mirror of
https://github.com/Z3Prover/z3
synced 2025-05-07 07:45:46 +00:00
update todos, working on assignment minimization
This commit is contained in:
parent
3447d80310
commit
c82bbaad7d
8 changed files with 51 additions and 55 deletions
|
@ -121,6 +121,14 @@ namespace polysat {
|
|||
return {lookup(lit.var()), lit};
|
||||
}
|
||||
|
||||
bool signed_constraint::is_currently_false(solver& s) const {
|
||||
return get()->is_currently_false(s.assignment(), is_positive());
|
||||
}
|
||||
|
||||
bool signed_constraint::is_currently_true(solver& s) const {
|
||||
return get()->is_currently_true(s.assignment(), is_positive());
|
||||
}
|
||||
|
||||
/** Look up constraint among stored constraints. */
|
||||
constraint* constraint_manager::dedup(constraint* c1) {
|
||||
constraint* c2 = nullptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue