mirror of
https://github.com/Z3Prover/z3
synced 2025-08-24 12:07:52 +00:00
add back minimize vars
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6df23fbce3
commit
be790b8892
8 changed files with 32 additions and 7 deletions
|
@ -40,6 +40,8 @@ namespace polysat {
|
|||
void narrow(solver& s, bool is_positive) override;
|
||||
bool is_currently_false(solver & s, bool is_positive) const;
|
||||
bool is_currently_true(solver& s, bool is_positive) const;
|
||||
bool is_currently_false(solver& s, assignment_t const& sub, bool is_positive) const override { return false; }
|
||||
bool is_currently_true(solver& s, assignment_t const& sub, bool is_positive) const override { return false; }
|
||||
|
||||
inequality as_inequality(bool is_positive) const override { throw default_exception("is not an inequality"); }
|
||||
unsigned hash() const override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue