Skip to content

Commit

Permalink
redundant parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Jul 13, 2022
1 parent dec87fe commit b253db2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smt/smt_model_checker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ namespace smt {
TRACE("model_checker", tout << "model checker result: " << (num_failures == 0) << "\n";);
m_max_cexs += m_params.m_mbqi_max_cexs;

if (num_failures == 0 && (!m_context->validate_model())) {
if (num_failures == 0 && !m_context->validate_model()) {
num_failures = 1;
// this time force expanding recursive function definitions
// that are not forced true in the current model.
Expand Down

0 comments on commit b253db2

Please sign in to comment.