3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-13 22:41:15 +00:00

fix build

This commit is contained in:
Nikolaj Bjorner 2023-12-02 19:52:59 -08:00
parent 1de25ed09c
commit 965bee5801
4 changed files with 4 additions and 4 deletions

View file

@ -87,7 +87,7 @@ namespace sat {
virtual void init_search() {}
virtual bool propagated(sat::literal l, sat::ext_constraint_idx idx) { UNREACHABLE(); return false; }
virtual bool unit_propagate() = 0;
virtual bool should_propagate() { return false; }
virtual bool can_propagate() { return false; }
virtual bool is_external(bool_var v) { return false; }
virtual double get_reward(literal l, ext_constraint_idx idx, literal_occs_fun& occs) const { return 0; }
virtual void get_antecedents(literal l, ext_justification_idx idx, literal_vector & r, bool probing) = 0;