mirror of
https://github.com/Z3Prover/z3
synced 2025-08-14 06:45:25 +00:00
update tests
This commit is contained in:
parent
8f314d4a7f
commit
19c1ba5158
2 changed files with 83 additions and 24 deletions
|
@ -289,6 +289,8 @@ namespace polysat {
|
|||
// Track value assignments to variables (and propagate to subslices)
|
||||
// (could generalize to fixed bits, then we need a way to merge interpreted enodes)
|
||||
void add_value(pvar v, rational const& value);
|
||||
void add_value(pvar v, unsigned value) { add_value(v, rational(value)); }
|
||||
void add_value(pvar v, int value) { add_value(v, rational(value)); }
|
||||
void add_constraint(signed_constraint c);
|
||||
|
||||
bool can_propagate() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue