Skip to content

Commit e7659e5

Browse files
committed
update Princess to version 2023-04-07.
1 parent 99cf7ef commit e7659e5

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

lib/ivy.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@ SPDX-License-Identifier: Apache-2.0
146146
<dependency org="de.uni-freiburg.informatik.ultimate" name="smtinterpol" rev="2.5-1242-g5c50fb6d" conf="runtime-smtinterpol->master; contrib->sources"/>
147147

148148
<!-- Princess for our Maven release -->
149-
<dependency org="io.github.uuverifiers" name="princess_2.13" rev="2022-11-03" conf="runtime-princess-with-javacup->default; contrib->sources"/>
149+
<dependency org="io.github.uuverifiers" name="princess_2.13" rev="2023-04-07" conf="runtime-princess-with-javacup->default; contrib->sources"/>
150150
<!-- Princess for our Ivy release-->
151-
<dependency org="io.github.uuverifiers" name="princess_2.13" rev="2022-11-03" conf="runtime-princess->default; contrib->sources">
151+
<dependency org="io.github.uuverifiers" name="princess_2.13" rev="2023-04-07" conf="runtime-princess->default; contrib->sources">
152152
<!-- Exclude dependency on java-cup and replace it with java-cup-runtime, which is enough.
153153
We use the JAR that is published by us instead of the one from net.sf.squirrel-sql.thirdparty-non-maven
154154
because the latter does not provide a separate JAR for java-cup-runtime. -->

src/org/sosy_lab/java_smt/solvers/princess/PrincessEnvironment.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
package org.sosy_lab.java_smt.solvers.princess;
1010

1111
import static scala.collection.JavaConverters.asJava;
12+
import static scala.collection.JavaConverters.asScala;
1213
import static scala.collection.JavaConverters.collectionAsScalaIterableConverter;
1314

1415
import ap.api.SimpleAPI;
@@ -214,7 +215,8 @@ private SimpleAPI getNewApi(boolean constructProofs) {
214215
directory, // dumpDirectory
215216
SimpleAPI.apply$default$8(), // tightFunctionScopes
216217
SimpleAPI.apply$default$9(), // genTotalityAxioms
217-
new scala.Some<>(randomSeed) // randomSeed
218+
new scala.Some<>(randomSeed), // randomSeed
219+
asScala(ImmutableSet.of()).toSet() // empty Set<LOG_FLAG>, no internal logging
218220
);
219221

220222
if (constructProofs) { // needed for interpolation and unsat cores

0 commit comments

Comments
 (0)