mirror of
https://github.com/Z3Prover/z3
synced 2026-03-03 20:24:36 +00:00
fix build warnings
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
032a3a879b
commit
08babfff60
6 changed files with 4 additions and 8 deletions
|
|
@ -131,7 +131,7 @@ namespace smt {
|
|||
}
|
||||
|
||||
parallel::worker::worker(unsigned id, parallel &p, expr_ref_vector const &_asms)
|
||||
: id(id), p(p), b(p.m_batch_manager), m_smt_params(p.ctx.get_fparams()), asms(m), m_g2l(p.ctx.m, m),
|
||||
: id(id), p(p), b(p.m_batch_manager), asms(m), m_smt_params(p.ctx.get_fparams()), m_g2l(p.ctx.m, m),
|
||||
m_l2g(m, p.ctx.m) {
|
||||
for (auto e : _asms)
|
||||
asms.push_back(m_g2l(e));
|
||||
|
|
|
|||
|
|
@ -385,7 +385,6 @@ namespace smt {
|
|||
case l_undef:
|
||||
break;
|
||||
case l_true: {
|
||||
expr* true_arg = nullptr;
|
||||
auto arg0 = n->get_arg(0);
|
||||
auto arg1 = n->get_arg(1);
|
||||
if (m_context.find_assignment(arg0) == l_false) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue