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:
parent
dfb7c87448
commit
0ec567fe15
18 changed files with 254 additions and 105 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue