Skip to content

Commit a6bdbf9

Browse files
committed
Princess: fix usage of static methods from Scala.
1 parent f894510 commit a6bdbf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ private <R> R visitQuantifier(FormulaVisitor<R> visitor, BooleanFormula f, IQuan
546546

547547
// substitute the bound variable with index 0 with a new variable, and un-shift the remaining
548548
// de-Bruijn indices, such that the next nested bound variable has index 0.
549-
IFormula substitutedBody = IFormula.subst(body, asScalaList(substitutionVariable), -1);
549+
IFormula substitutedBody = IExpression.subst(body, asScalaList(substitutionVariable), -1);
550550

551551
return visitor.visitQuantifier(
552552
f,

0 commit comments

Comments
 (0)