3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

fix lexicographic combinations for wmax: pb constrsaints were not interpreted in Boolean benchmarks. #782

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-11-15 15:07:05 +02:00
parent fc7a217cd0
commit e21bd8dacc
4 changed files with 12 additions and 0 deletions

View file

@ -73,6 +73,8 @@ public:
unsigned arity, sort * const * domain, sort * range);
virtual void get_op_names(svector<builtin_name> & op_names, symbol const & logic);
virtual bool is_considered_uninterpreted(func_decl * f) { return false; }
};