File tree 2 files changed +5
-3
lines changed
src/org/sosy_lab/java_smt/solvers/princess
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
146
146
<dependency org =" de.uni-freiburg.informatik.ultimate" name =" smtinterpol" rev =" 2.5-1242-g5c50fb6d" conf =" runtime-smtinterpol->master; contrib->sources" />
147
147
148
148
<!-- 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" />
150
150
<!-- 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" >
152
152
<!-- Exclude dependency on java-cup and replace it with java-cup-runtime, which is enough.
153
153
We use the JAR that is published by us instead of the one from net.sf.squirrel-sql.thirdparty-non-maven
154
154
because the latter does not provide a separate JAR for java-cup-runtime. -->
Original file line number Diff line number Diff line change 9
9
package org .sosy_lab .java_smt .solvers .princess ;
10
10
11
11
import static scala .collection .JavaConverters .asJava ;
12
+ import static scala .collection .JavaConverters .asScala ;
12
13
import static scala .collection .JavaConverters .collectionAsScalaIterableConverter ;
13
14
14
15
import ap .api .SimpleAPI ;
@@ -214,7 +215,8 @@ private SimpleAPI getNewApi(boolean constructProofs) {
214
215
directory , // dumpDirectory
215
216
SimpleAPI .apply$default$8 (), // tightFunctionScopes
216
217
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
218
220
);
219
221
220
222
if (constructProofs ) { // needed for interpolation and unsat cores
You can’t perform that action at this time.
0 commit comments