mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
fix uninitialized variable
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6b5e49c4a1
commit
c2108f74f1
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ namespace opt {
|
|||
m_soft_constraints(m), m_answer(m) {}
|
||||
|
||||
lbool maxsmt::operator()() {
|
||||
lbool is_sat;
|
||||
lbool is_sat = l_undef;
|
||||
m_msolver = 0;
|
||||
symbol const& maxsat_engine = m_c.maxsat_engine();
|
||||
IF_VERBOSE(1, verbose_stream() << "(maxsmt)\n";);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue