-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathNonLinearArithmeticWithModuloTest.java
165 lines (140 loc) · 5.38 KB
/
NonLinearArithmeticWithModuloTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// This file is part of JavaSMT,
// an API wrapper for a collection of SMT solvers:
// https://github.com/sosy-lab/java-smt
//
// SPDX-FileCopyrightText: 2020 Dirk Beyer <https://www.sosy-lab.org>
//
// SPDX-License-Identifier: Apache-2.0
package org.sosy_lab.java_smt.test;
import static com.google.common.collect.ImmutableList.toImmutableList;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Lists;
import java.util.Arrays;
import java.util.List;
import java.util.function.Supplier;
import org.junit.AssumptionViolatedException;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameter;
import org.junit.runners.Parameterized.Parameters;
import org.sosy_lab.common.configuration.ConfigurationBuilder;
import org.sosy_lab.java_smt.SolverContextFactory.Solvers;
import org.sosy_lab.java_smt.api.BooleanFormula;
import org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula;
import org.sosy_lab.java_smt.api.SolverException;
import org.sosy_lab.java_smt.basicimpl.AbstractNumeralFormulaManager.NonLinearArithmetic;
@RunWith(Parameterized.class)
public class NonLinearArithmeticWithModuloTest extends SolverBasedTest0 {
@Parameters(name = "{0} {1}")
public static Iterable<Object[]> getAllSolversAndTheories() {
return Lists.cartesianProduct(
Arrays.asList(ParameterizedSolverBasedTest0.getAllSolvers()),
Arrays.asList(NonLinearArithmetic.values()))
.stream()
.map(List::toArray)
.collect(toImmutableList());
}
@Parameter(0)
public Solvers solver;
@Override
protected Solvers solverToUse() {
return solver;
}
@Parameter(1)
public NonLinearArithmetic nonLinearArithmetic;
@Override
protected ConfigurationBuilder createTestConfigBuilder() {
return super.createTestConfigBuilder()
.setOption("solver.nonLinearArithmetic", nonLinearArithmetic.name());
}
private IntegerFormula handleExpectedException(Supplier<IntegerFormula> supplier) {
try {
return supplier.get();
} catch (UnsupportedOperationException e) {
if (nonLinearArithmetic == NonLinearArithmetic.USE
&& NonLinearArithmeticTest.SOLVER_WITHOUT_NONLINEAR_ARITHMETIC.contains(solver)) {
throw new AssumptionViolatedException(
"Expected UnsupportedOperationException was thrown correctly");
}
throw e;
}
}
private void assertExpectedUnsatifiabilityForNonLinearArithmetic(BooleanFormula f)
throws SolverException, InterruptedException {
if (nonLinearArithmetic == NonLinearArithmetic.USE
|| (nonLinearArithmetic == NonLinearArithmetic.APPROXIMATE_FALLBACK
&& !NonLinearArithmeticTest.SOLVER_WITHOUT_NONLINEAR_ARITHMETIC.contains(solver))) {
assertThatFormula(f).isUnsatisfiable();
} else {
assertThatFormula(f).isSatisfiable();
}
}
@Test
public void testModuloConstant() throws SolverException, InterruptedException {
requireIntegers();
IntegerFormula a = imgr.makeVariable("a");
BooleanFormula f =
bmgr.and(
imgr.equal(a, imgr.makeNumber(3)),
imgr.equal(
imgr.makeNumber(1),
handleExpectedException(() -> imgr.modulo(a, imgr.makeNumber(2)))));
assertThatFormula(f).isSatisfiable();
}
@Test
public void testModuloConstantUnsatisfiable() throws SolverException, InterruptedException {
requireIntegers();
IntegerFormula a = imgr.makeVariable("a");
BooleanFormula f =
bmgr.and(
imgr.equal(a, imgr.makeNumber(5)),
imgr.equal(
imgr.makeNumber(1),
handleExpectedException(() -> imgr.modulo(a, imgr.makeNumber(3)))));
// INFO: OpenSMT does support modulo with constants
if (ImmutableSet.of(
Solvers.SMTINTERPOL,
Solvers.CVC4,
Solvers.YICES2,
Solvers.OPENSMT,
Solvers.MATHSAT5)
.contains(solver)
&& nonLinearArithmetic == NonLinearArithmetic.APPROXIMATE_FALLBACK) {
// some solvers support modulo with constants
assertThatFormula(f).isUnsatisfiable();
} else {
assertExpectedUnsatifiabilityForNonLinearArithmetic(f);
}
}
@Test
public void testModulo() throws SolverException, InterruptedException {
requireIntegers();
IntegerFormula a = imgr.makeVariable("a");
BooleanFormula f =
bmgr.and(
imgr.equal(a, imgr.makeNumber(2)),
imgr.equal(
imgr.makeNumber(1),
handleExpectedException(() -> imgr.modulo(imgr.makeNumber(3), a))));
assertThatFormula(f).isSatisfiable();
}
@Test
public void testModuloUnsatisfiable() throws SolverException, InterruptedException {
requireIntegers();
IntegerFormula a = imgr.makeVariable("a");
BooleanFormula f =
bmgr.and(
imgr.equal(a, imgr.makeNumber(3)),
imgr.equal(
imgr.makeNumber(1),
handleExpectedException(() -> imgr.modulo(imgr.makeNumber(5), a))));
if (ImmutableSet.of(Solvers.CVC4, Solvers.MATHSAT5).contains(solver)
&& nonLinearArithmetic != NonLinearArithmetic.APPROXIMATE_ALWAYS) {
// some solvers support non-linear multiplication (partially)
assertThatFormula(f).isUnsatisfiable();
} else {
assertExpectedUnsatifiabilityForNonLinearArithmetic(f);
}
}
}