mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
fix test for new signature of flip
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c1b9a3cc9e
commit
04824786be
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ namespace bv {
|
|||
vector<sat::clause_info> const& clauses() const override { return m_clauses; }
|
||||
sat::clause_info const& get_clause(unsigned idx) const override { return m_clauses[idx]; }
|
||||
ptr_iterator<unsigned> get_use_list(sat::literal lit) override { return ptr_iterator<unsigned>(nullptr, nullptr); }
|
||||
void flip(sat::bool_var v) override {}
|
||||
bool flip(sat::bool_var v) override { return true; }
|
||||
double reward(sat::bool_var v) override { return 0; }
|
||||
double get_weigth(unsigned clause_idx) override { return 0; }
|
||||
bool is_true(sat::literal lit) override { return true; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue