3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-18 20:03:38 +00:00

fixing ci issues

fixing if condition
This commit is contained in:
nilsbecker 2019-02-25 19:10:47 +01:00
parent 960708e99e
commit 17adecff68
8 changed files with 16 additions and 16 deletions

View file

@ -437,7 +437,7 @@ public:
void log_bv_from_exprs(app * r, unsigned n, expr* const* es) {
if (m_manager.has_trace_stream()) {
for (unsigned i = 0; i < n; ++i) {
if (!m_manager.is_true(es[i]) && !m_manager.is_true(es[i]))
if (!m_manager.is_true(es[i]) && !m_manager.is_false(es[i]))
return;
}