@@ -43,7 +43,7 @@ public class SolverThreadLocalityTest extends SolverBasedTest0.ParameterizedSolv
4343 private static final int DEFAULT_PROBLEM_SIZE = 8 ;
4444
4545 private static final Collection <Solvers > SOLVERS_NOT_SUPPORTING_FORMULA_THREAD_SHARING =
46- ImmutableList .of (Solvers . CVC5 );
46+ ImmutableList .of (); // TODO: Remove this
4747
4848 @ Before
4949 public void makeThreads () {
@@ -79,7 +79,6 @@ public void allLocalTest() throws InterruptedException, SolverException {
7979 public void nonLocalContextTest ()
8080 throws ExecutionException , InterruptedException , SolverException {
8181 requireIntegers ();
82- assume ().that (solverToUse ()).isNotEqualTo (Solvers .CVC5 );
8382
8483 // generate a new context in another thread, i.e., non-locally
8584 Future <SolverContext > result = executor .submit (() -> factory .generateContext ());
@@ -114,7 +113,6 @@ public void nonLocalContextTest()
114113 public void nonLocalFormulaTest ()
115114 throws InterruptedException , SolverException , ExecutionException {
116115 requireIntegers ();
117- assume ().that (solverToUse ()).isNotEqualTo (Solvers .CVC5 );
118116
119117 // generate a new formula in another thread, i.e., non-locally
120118 Future <BooleanFormula > result =
@@ -143,8 +141,6 @@ public void nonLocalFormulaTest()
143141 @ Test
144142 public void nonLocalProverTest () throws InterruptedException , ExecutionException {
145143 requireIntegers ();
146- assume ().that (solverToUse ()).isNotEqualTo (Solvers .CVC5 );
147-
148144 BooleanFormula formula = hardProblem .generate (DEFAULT_PROBLEM_SIZE );
149145
150146 // generate a new prover in another thread, i.e., non-locally
@@ -264,7 +260,6 @@ public <T> void localInterpolationTest() throws InterruptedException, SolverExce
264260 public <T > void nonLocalInterpolationTest () throws InterruptedException , ExecutionException {
265261 requireIntegers ();
266262 requireInterpolation ();
267- assume ().that (solverToUse ()).isNotEqualTo (Solvers .CVC5 );
268263
269264 BooleanFormula f1 = imgr .lessThan (imgr .makeVariable ("A" ), imgr .makeVariable ("B" ));
270265 BooleanFormula f2 = imgr .lessThan (imgr .makeVariable ("B" ), imgr .makeVariable ("A" ));
0 commit comments