Skip to content

Commit

Permalink
Remove use of "synchornized" in Mathsat5InterpolatingProver.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-raffler committed Dec 19, 2023
1 parent 010ddc2 commit a28e7cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public List<BooleanFormula> getTreeInterpolants(
}

@Override
public synchronized <T> T allSat(AllSatCallback<T> callback, List<BooleanFormula> important) {
public <T> T allSat(AllSatCallback<T> callback, List<BooleanFormula> important) {
// TODO how can we support allsat in MathSat5-interpolation-prover?
// error: "allsat is not compatible wwith proof generation"
throw new UnsupportedOperationException(
Expand Down

0 comments on commit a28e7cd

Please sign in to comment.