3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-14 14:55:25 +00:00

working on lookahead

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-03-27 04:53:27 +02:00
parent 5ed3200c88
commit 2afd45b3c2
10 changed files with 388 additions and 168 deletions

View file

@ -130,7 +130,7 @@ namespace sat {
inline void erase_ternary_watch(watch_list & wlist, literal l1, literal l2) { wlist.erase(watched(l1, l2)); }
class clause_allocator;
void display(std::ostream & out, clause_allocator const & ca, watch_list const & wlist);
void display_watch_list(std::ostream & out, clause_allocator const & ca, watch_list const & wlist);
};
#endif