mirror of
https://github.com/Z3Prover/z3
synced 2025-08-03 01:40:22 +00:00
integrate v2 of lns
This commit is contained in:
parent
dfb7c87448
commit
0ec567fe15
18 changed files with 254 additions and 105 deletions
|
@ -158,9 +158,10 @@ namespace {
|
|||
void assert_expr_core(expr * t) override {
|
||||
m_context.assert_expr(t);
|
||||
}
|
||||
void set_phase(expr* e) override {
|
||||
NOT_IMPLEMENTED_YET();
|
||||
}
|
||||
void set_phase(expr* e) override { m_context.set_phase(e); }
|
||||
phase* get_phase() override { return m_context.get_phase(); }
|
||||
void set_phase(phase* p) override { m_context.set_phase(p); }
|
||||
void move_to_front(expr* e) override { m_context.move_to_front(e); }
|
||||
|
||||
void assert_expr_core2(expr * t, expr * a) override {
|
||||
if (m_name2assertion.contains(a)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue