mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
fix build failures under linux
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
73cdf809fe
commit
f96cfeae9e
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ bool iz3base::is_sat(const std::vector<ast> &q, ast &_proof, std::vector<ast> &v
|
|||
p.set_bool("model", true);
|
||||
p.set_bool("unsat_core", true);
|
||||
scoped_ptr<solver_factory> sf = mk_smt_solver_factory();
|
||||
scoped_ptr<::solver> solver = (*sf)(m(), p, true, true, true, ::symbol::null);
|
||||
scoped_ptr< ::solver > solver = (*sf)(m(), p, true, true, true, ::symbol::null);
|
||||
::solver &s = *solver.get();
|
||||
|
||||
for(unsigned i = 0; i < q.size(); i++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue