Skip to content

Commit

Permalink
Minor fix for quantifiers preprocessing pass
Browse files Browse the repository at this point in the history
  • Loading branch information
ajreynol committed Feb 24, 2025
1 parent 76b59f0 commit b9860a7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/preprocessing/passes/quantifiers_preprocess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ PreprocessingPassResult QuantifiersPreprocess::applyInternal(
Trace("quantifiers-preprocess") << "*** Pre-skolemize " << prev << endl;
Trace("quantifiers-preprocess")
<< " ...got " << (*assertionsToPreprocess)[i] << endl;
if (assertionsToPreprocess->isInConflict())
{
return PreprocessingPassResult::CONFLICT;
}
}
}

Expand Down

0 comments on commit b9860a7

Please sign in to comment.