mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
fix debian amd64 warnings
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c17fd2d516
commit
203c5015c8
9 changed files with 15 additions and 13 deletions
|
@ -273,7 +273,7 @@ namespace sat {
|
|||
clause const& c = *m_clauses[i];
|
||||
bool is_sat = c.satisfied_by(m_model);
|
||||
SASSERT(is_sat != m_false.contains(i));
|
||||
SASSERT(is_sat == m_num_true[i] > 0);
|
||||
SASSERT(is_sat == (m_num_true[i] > 0));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ Notes:
|
|||
#include"model_v2_pp.h"
|
||||
#include"tactic.h"
|
||||
#include"ast_pp.h"
|
||||
#include<strstream>
|
||||
#include<sstream>
|
||||
|
||||
struct goal2sat::imp {
|
||||
struct frame {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue