3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 13:06:05 +00:00

integrate v2 of lns

This commit is contained in:
Nikolaj Bjorner 2021-02-04 15:47:40 -08:00
parent dfb7c87448
commit 0ec567fe15
18 changed files with 254 additions and 105 deletions

View file

@ -112,6 +112,14 @@ public:
}
virtual void set_phase(expr* e) = 0;
virtual void move_to_front(expr* e) = 0;
class phase { public: virtual ~phase() {} };
virtual phase* get_phase() = 0;
virtual void set_phase(phase* p) = 0;
void assert_expr(ptr_vector<expr> const& ts) {
for (expr* e : ts) assert_expr(e);