Skip to content

Commit 4617374

Browse files
committed
fixed a crucial implementation mistake, where all numbers were handed to Floating-Points as Strings
1 parent 4bf4133 commit 4617374

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/org/sosy_lab/java_smt/test/SMTLIB2StringTest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import org.sosy_lab.java_smt.api.StringFormula;
2525
import org.sosy_lab.java_smt.basicimpl.Generator;
2626

27-
@SuppressWarnings({"CheckReturnValue", "ReturnValueIgnored","EqualsIncompatibleType"})
27+
@SuppressWarnings({"CheckReturnValue", "ReturnValueIgnored", "EqualsIncompatibleType"})
2828
public class SMTLIB2StringTest extends SolverBasedTest0.ParameterizedSolverBasedTest0 {
2929
@Before
3030
public void setUp() {
@@ -343,7 +343,6 @@ public void testRegexIntersection()
343343

344344
BooleanFormula actualResult = mgr.universalParseFromString(x);
345345

346-
347346
assertThat(
348347
actualResult.equals(
349348
"(str.in_re a (re.inter (str.to_re \"\\Qa\\E\") (str.to_re " + "\"\\Qb\\E\")))"));

0 commit comments

Comments
 (0)