3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 18:05:21 +00:00

fix build

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-02-01 18:44:52 -08:00
parent 6c464f8aec
commit a76107e50d
2 changed files with 1 additions and 2 deletions

View file

@ -7344,7 +7344,6 @@ class Optimize(Z3PPObject):
>>> x = Int('x')
>>> p3 = Bool('p3')
>>> s = Optimize()
>>> s.set(unsat_core=True)
>>> s.assert_and_track(x > 0, 'p1')
>>> s.assert_and_track(x != 1, 'p2')
>>> s.assert_and_track(x < 0, p3)

View file

@ -123,7 +123,7 @@ public:
void assert_expr_core2(expr *t, expr *a) override { NOT_IMPLEMENTED_YET(); }
expr_ref_vector cube(expr_ref_vector&, unsigned) override { return expr_ref_vector(m); }
void get_levels(ptr_vector<expr> const& vars, unsigned_vector& depth) override { m_solver.get_levels(vars, depth); }
expr_ref_vector get_trail() { return m_solver.get_trail(); }
expr_ref_vector get_trail() override { return m_solver.get_trail(); }
void push() override;
void pop(unsigned n) override;