Skip to content

Commit

Permalink
chore: revert triviality checks for no-preds-no-rhs clauses
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienChampion committed Jan 15, 2024
1 parent 18a7304 commit fb8d1b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/common/smt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ where
}

solver.assert_with(self, false)?;
let sat = tmo_multi_check_sat(
let sat = tmo_multi_try_check_sat_legacy(
solver,
conf.until_timeout()
.map(|time| time / 100)
Expand All @@ -345,6 +345,7 @@ where
solver.assert_with(self, true)?;
Ok(())
},
!conf.has_timeout(),
)?;
Ok(!sat)
}
Expand Down

0 comments on commit fb8d1b9

Please sign in to comment.