3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 12:08:18 +00:00

re-add pb extraction

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-08-26 13:53:28 -07:00
parent 526d76b447
commit 21e13bc5f9

View file

@ -87,7 +87,7 @@ namespace sat {
virtual bool extract_pb(std::function<void(unsigned sz, literal const* c, unsigned k)>& card, virtual bool extract_pb(std::function<void(unsigned sz, literal const* c, unsigned k)>& card,
std::function<void(unsigned sz, literal const* c, unsigned const* coeffs, unsigned k)>& pb) { std::function<void(unsigned sz, literal const* c, unsigned const* coeffs, unsigned k)>& pb) {
return true; return false;
} }
}; };