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

add function pointer to class to see how MacOs build reacts

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-08-25 16:15:34 -07:00
parent 0d7b7a417a
commit ca0a82952f

View file

@ -73,7 +73,7 @@ namespace sat {
watched_clause(clause* c, literal l1, literal l2):
m_clause(c), m_l1(l1), m_l2(l2) {}
};
// std::function<void(unsigned, literal const*, status)> m_print_clause;
std::function<void(unsigned, literal const*, status)> m_print_clause;
svector<watched_clause> m_watched_clauses;
typedef svector<unsigned> watch;
solver& s;