Skip to content

Commit

Permalink
change back to max2type solver
Browse files Browse the repository at this point in the history
  • Loading branch information
d367wang committed Jul 15, 2021
1 parent 576d9b4 commit fad7c62
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/checkers/inference/OsTrustedTest.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package checkers.inference;

import checkers.inference.solver.MaxSat2TypeSolver;
import checkers.inference.solver.SolverEngine;
import checkers.inference.test.CFInferenceTest;
import org.checkerframework.framework.test.TestUtilities;
import org.checkerframework.javacutil.Pair;
Expand All @@ -20,7 +19,7 @@ public OsTrustedTest(File testFile) {

@Override
public Pair<String, List<String>> getSolverNameAndOptions() {
return Pair.<String, List<String>>of(SolverEngine.class.getCanonicalName(), new ArrayList<String>());
return Pair.<String, List<String>>of(MaxSat2TypeSolver.class.getCanonicalName(), new ArrayList<String>());
}

@Parameters
Expand Down

0 comments on commit fad7c62

Please sign in to comment.