3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-14 06:45:25 +00:00

update tests

This commit is contained in:
Jakob Rath 2023-07-26 09:46:55 +02:00
parent 8f314d4a7f
commit 19c1ba5158
2 changed files with 83 additions and 24 deletions

View file

@ -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;