File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
src/org/sosy_lab/java_smt/solvers/princess Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff 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. -->
Original file line number Diff line number Diff line change 99package org .sosy_lab .java_smt .solvers .princess ;
1010
1111import static scala .collection .JavaConverters .asJava ;
12+ import static scala .collection .JavaConverters .asScala ;
1213import static scala .collection .JavaConverters .collectionAsScalaIterableConverter ;
1314
1415import 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
You can’t perform that action at this time.
0 commit comments