File tree 2 files changed +2
-2
lines changed
src/org/sosy_lab/java_smt/example
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 77
77
78
78
# build the classpath including all solvers
79
79
CLASSPATH=" $CLASSPATH$SEP$PATH_TO_JAVASMT /bin$SEP$PATH_TO_JAVASMT /lib/java/core/*"
80
- SOLVERS=" boolector cvc4 cvc5 mathsat opensmt optimathsat princess smtinterpol yices2 z3"
80
+ SOLVERS=" bitwuzla boolector cvc4 cvc5 mathsat opensmt optimathsat princess smtinterpol yices2 z3"
81
81
for solver in $SOLVERS ; do
82
82
CLASSPATH=" $CLASSPATH$SEP$PATH_TO_JAVASMT /lib/java/runtime-$solver /*"
83
83
done
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ private List<String> getFeatures(SolverContext context)
132
132
context .newProverEnvironment (GENERATE_UNSAT_CORE_OVER_ASSUMPTIONS )) {
133
133
prover .unsatCoreOverAssumptions (ImmutableList .of ());
134
134
features .add ("UnsatCore /w Assumption" );
135
- } catch (UnsupportedOperationException e ) {
135
+ } catch (UnsupportedOperationException | IllegalStateException e ) {
136
136
// ignore, feature is not supported.
137
137
}
138
138
You can’t perform that action at this time.
0 commit comments