mirror of
https://github.com/Z3Prover/z3
synced 2025-05-10 17:25:47 +00:00
update to use incremental substitution
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6f689c3c1f
commit
cbbf1381f7
19 changed files with 167 additions and 89 deletions
|
@ -17,6 +17,8 @@ Author:
|
|||
|
||||
namespace polysat {
|
||||
|
||||
class solver;
|
||||
|
||||
class ule_constraint final : public constraint {
|
||||
friend class constraint_manager;
|
||||
|
||||
|
@ -34,8 +36,8 @@ namespace polysat {
|
|||
std::ostream& display(std::ostream& out) const override;
|
||||
bool is_always_false(bool is_positive, pdd const& lhs, pdd const& rhs) const;
|
||||
bool is_always_false(bool is_positive) const override;
|
||||
bool is_currently_false(assignment_t const& a, bool is_positive) const override;
|
||||
bool is_currently_true(assignment_t const& a, bool is_positive) const override;
|
||||
bool is_currently_false(solver& s, bool is_positive) const override;
|
||||
bool is_currently_true(solver& s, bool is_positive) const override;
|
||||
void narrow(solver& s, bool is_positive) override;
|
||||
inequality as_inequality(bool is_positive) const override;
|
||||
unsigned hash() const override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue