We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f87a843 commit 3141539Copy full SHA for 3141539
src/org/sosy_lab/java_smt/test/FormulaClassifierTest.java
@@ -149,12 +149,7 @@ public void test_LRA_2() {
149
+ "(exists ((a Real) (b Real)) (= (+ y y) (- a b))) "
150
+ "))";
151
classifier.visit(mgr.parse(query));
152
- if (solverToUse() == Solvers.PRINCESS) {
153
- // Princess rewrites the formula and uses '-1' for the negation -> Integer arithmetic
154
- assertThat(classifier.toString()).isEqualTo("LIRA");
155
- } else {
156
- assertThat(classifier.toString()).isEqualTo("LRA");
157
- }
+ assertThat(classifier.toString()).isEqualTo("LRA");
158
}
159
160
@Test
0 commit comments