|
8 | 8 |
|
9 | 9 | import de.uka.ilkd.key.java.Services;
|
10 | 10 | import de.uka.ilkd.key.ldt.HeapLDT;
|
| 11 | +import de.uka.ilkd.key.ldt.JavaDLTheory; |
11 | 12 | import de.uka.ilkd.key.logic.*;
|
12 | 13 | import de.uka.ilkd.key.logic.label.OriginTermLabel;
|
13 | 14 | import de.uka.ilkd.key.logic.op.*;
|
14 |
| -import de.uka.ilkd.key.logic.sort.Sort; |
15 | 15 | import de.uka.ilkd.key.proof.Goal;
|
16 | 16 | import de.uka.ilkd.key.proof.Node;
|
17 | 17 | import de.uka.ilkd.key.proof.Proof;
|
|
25 | 25 | import de.uka.ilkd.key.symbolic_execution.util.SymbolicExecutionSideProofUtil;
|
26 | 26 | import de.uka.ilkd.key.symbolic_execution.util.SymbolicExecutionUtil;
|
27 | 27 |
|
| 28 | +import org.key_project.logic.Name; |
| 29 | +import org.key_project.logic.sort.Sort; |
28 | 30 | import org.key_project.util.Strings;
|
29 | 31 | import org.key_project.util.collection.ImmutableList;
|
30 | 32 | import org.key_project.util.collection.ImmutableSLList;
|
@@ -567,9 +569,9 @@ protected Term createLocationPredicateAndTerm(
|
567 | 569 | sorts[i] = arguments[i].sort();
|
568 | 570 | }
|
569 | 571 | // Create predicate which will be used in formulas to store the value interested in.
|
570 |
| - Function newPredicate = |
571 |
| - new Function(new Name(getServices().getTermBuilder().newName("LayoutPredicate")), |
572 |
| - Sort.FORMULA, sorts); |
| 572 | + JFunction newPredicate = |
| 573 | + new JFunction(new Name(getServices().getTermBuilder().newName("LayoutPredicate")), |
| 574 | + JavaDLTheory.FORMULA, sorts); |
573 | 575 | // Create formula which contains the value interested in.
|
574 | 576 | Term newTerm = getServices().getTermBuilder().func(newPredicate, arguments);
|
575 | 577 | return newTerm;
|
@@ -788,12 +790,13 @@ public ExtractLocationParameter(Term arrayStartIndex, Term arrayEndIndex, Term p
|
788 | 790 | OriginTermLabel.removeOriginLabels(arrayStartIndex, getServices());
|
789 | 791 | this.arrayEndIndex = OriginTermLabel.removeOriginLabels(arrayEndIndex, getServices());
|
790 | 792 | TermBuilder tb = getServices().getTermBuilder();
|
791 |
| - Function constantFunction = new Function( |
| 793 | + JFunction constantFunction = new JFunction( |
792 | 794 | new Name(tb.newName(ExecutionAllArrayIndicesVariable.ARRAY_INDEX_CONSTANT_NAME)),
|
793 | 795 | getServices().getTypeConverter().getIntegerLDT().targetSort());
|
794 | 796 | this.arrayRangeConstant = tb.func(constantFunction);
|
795 |
| - Function notAValueFunction = new Function( |
796 |
| - new Name(tb.newName(ExecutionAllArrayIndicesVariable.NOT_A_VALUE_NAME)), Sort.ANY); |
| 797 | + JFunction notAValueFunction = new JFunction( |
| 798 | + new Name(tb.newName(ExecutionAllArrayIndicesVariable.NOT_A_VALUE_NAME)), |
| 799 | + JavaDLTheory.ANY); |
797 | 800 | this.notAValue = tb.func(notAValueFunction);
|
798 | 801 | }
|
799 | 802 |
|
@@ -939,19 +942,19 @@ public Term createPreValueTerm() {
|
939 | 942 | } else {
|
940 | 943 | if (getServices().getJavaInfo().getArrayLength() == programVariable) {
|
941 | 944 | // Special handling for length attribute of arrays
|
942 |
| - Function function = |
| 945 | + JFunction function = |
943 | 946 | getServices().getTypeConverter().getHeapLDT().getLength();
|
944 | 947 | return tb.func(function, createPreParentTerm());
|
945 | 948 | } else {
|
946 |
| - Function function = |
| 949 | + JFunction function = |
947 | 950 | getServices().getTypeConverter().getHeapLDT().getFieldSymbolForPV(
|
948 | 951 | (LocationVariable) programVariable, getServices());
|
949 | 952 | return tb.dot(programVariable.sort(), createPreParentTerm(), function);
|
950 | 953 | }
|
951 | 954 | }
|
952 | 955 | } else {
|
953 | 956 | if (programVariable.isStatic()) {
|
954 |
| - Function function = getServices().getTypeConverter().getHeapLDT() |
| 957 | + JFunction function = getServices().getTypeConverter().getHeapLDT() |
955 | 958 | .getFieldSymbolForPV((LocationVariable) programVariable, getServices());
|
956 | 959 | return tb.staticDot(programVariable.sort(), function);
|
957 | 960 | } else {
|
|
0 commit comments