Skip to content

Commit 417a43b

Browse files
committed
Merge remote-tracking branch 'origin/main' into setStatement
# By Drodt (57) and others # Via GitHub (26) and others * origin/main: (158 commits) ColorSettings: drop old configuration file format Merge main into extraxt-new-core Bump ch.qos.logback:logback-classic from 1.5.0 to 1.5.3 fixes #1533 added checkbox to disable example loader directly in dialog address reviewer comments: set border + spotless + typo JML enabled keys indicator for the status line add test case for adt taclets Fix position info for equality expr errors Revert debugging code Spotless Add ADT Deconstructors Moved TestSMTMod to newsmt2 spotless applied to TestSMTMod Added test for Modulo Translation Added translation from KeY mod to SMT mod. Soundness derived from translation of KeY div to SMT div preventing NPEs in overloaded operators added test cases for operator overloading activate the OverloadedOperatorHandler.java for LocSet datatype and repair translation ... # Conflicts: # key.core/src/main/java/de/uka/ilkd/key/logic/op/LocationVariable.java # key.core/src/main/java/de/uka/ilkd/key/proof/mgt/SpecificationRepository.java # key.core/src/main/java/de/uka/ilkd/key/rule/conditions/FieldTypeToSortCondition.java # key.core/src/main/java/de/uka/ilkd/key/rule/conditions/StaticFieldCondition.java # key.core/src/main/java/de/uka/ilkd/key/speclang/jml/translation/JMLSpecFactory.java
2 parents aedfeaa + c3b3268 commit 417a43b

File tree

878 files changed

+7994
-5267
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

878 files changed

+7994
-5267
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ For more information, refer to
1414
* [Verification of `java.util.IdentityHashMap`](https://doi.org/10.1007/978-3-031-07727-2_4),
1515
* [Google Award for analysing a bug in `LinkedList`](https://www.key-project.org/2023/07/23/cwi-researchers-win-google-award-for-finding-a-bug-in-javas-linkedlist-using-key/)
1616

17-
The current version of KeY is 2.12.0, licensed under GPL v2.
17+
The current version of KeY is 2.12.2, licensed under GPL v2.
1818

1919

2020
Feel free to use the project templates to get started using KeY:
@@ -26,7 +26,7 @@ Feel free to use the project templates to get started using KeY:
2626

2727
* Hardware: >=2 GB RAM
2828
* Operating System: Linux/Unix, MacOSX, Windows
29-
* Java SE 11 or newer
29+
* Java 17 or newer
3030
* Optionally, KeY can make use of the following binaries:
3131
* SMT Solvers:
3232
* [Z3](https://github.com/Z3Prover/z3#z3)
@@ -113,7 +113,7 @@ This is the KeY project - Integrated Deductive Software Design
113113
Copyright (C) 2001-2011 Universität Karlsruhe, Germany
114114
Universität Koblenz-Landau, Germany
115115
and Chalmers University of Technology, Sweden
116-
Copyright (C) 2011-2023 Karlsruhe Institute of Technology, Germany
116+
Copyright (C) 2011-2024 Karlsruhe Institute of Technology, Germany
117117
Technical University Darmstadt, Germany
118118
Chalmers University of Technology, Sweden
119119

build.gradle

+7-7
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ plugins {
2121
// id "com.github.ben-manes.versions" version "0.39.0"
2222

2323
// Code formatting
24-
id "com.diffplug.spotless" version "6.23.3"
24+
id "com.diffplug.spotless" version "6.25.0"
2525
}
2626

2727
// Configure this project for use inside IntelliJ:
@@ -70,16 +70,16 @@ subprojects {
7070
}
7171

7272
dependencies {
73-
implementation("org.slf4j:slf4j-api:2.0.10")
73+
implementation("org.slf4j:slf4j-api:2.0.12")
7474

75-
testImplementation("ch.qos.logback:logback-classic:1.4.14")
76-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.1'
77-
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.1'
75+
testImplementation("ch.qos.logback:logback-classic:1.5.3")
76+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
77+
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.2'
7878
testImplementation project(':key.util')
7979

8080
testCompileOnly 'junit:junit:4.13.2'
81-
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.10.1'
82-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.1'
81+
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.10.2'
82+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
8383

8484
implementation("org.jspecify:jspecify:0.3.0")
8585
}

key.core.proof_references/src/main/java/de/uka/ilkd/key/proof_references/analyst/ClassAxiomAndInvariantProofReferencesAnalyst.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88

99
import de.uka.ilkd.key.java.Services;
1010
import de.uka.ilkd.key.java.abstraction.KeYJavaType;
11-
import de.uka.ilkd.key.logic.Name;
1211
import de.uka.ilkd.key.logic.op.IObserverFunction;
13-
import de.uka.ilkd.key.logic.sort.Sort;
1412
import de.uka.ilkd.key.proof.Node;
1513
import de.uka.ilkd.key.proof.init.ProofOblInput;
1614
import de.uka.ilkd.key.proof_references.reference.DefaultProofReference;
@@ -21,10 +19,12 @@
2119
import de.uka.ilkd.key.speclang.ClassInvariant;
2220
import de.uka.ilkd.key.speclang.PartialInvAxiom;
2321
import de.uka.ilkd.key.util.MiscTools;
24-
import de.uka.ilkd.key.util.Pair;
2522

23+
import org.key_project.logic.Name;
24+
import org.key_project.logic.sort.Sort;
2625
import org.key_project.util.collection.DefaultImmutableSet;
2726
import org.key_project.util.collection.ImmutableSet;
27+
import org.key_project.util.collection.Pair;
2828

2929
/**
3030
* Extracts used {@link ClassAxiom} and {@link ClassInvariant}s.

key.core.proof_references/src/main/java/de/uka/ilkd/key/proof_references/analyst/MethodCallProofReferencesAnalyst.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
import de.uka.ilkd.key.java.reference.MethodReference;
1515
import de.uka.ilkd.key.java.reference.TypeRef;
1616
import de.uka.ilkd.key.logic.JavaBlock;
17-
import de.uka.ilkd.key.logic.Name;
1817
import de.uka.ilkd.key.logic.PosInOccurrence;
1918
import de.uka.ilkd.key.logic.ProgramElementName;
2019
import de.uka.ilkd.key.logic.TermBuilder;
@@ -29,6 +28,7 @@
2928
import de.uka.ilkd.key.rule.RuleApp;
3029
import de.uka.ilkd.key.util.MiscTools;
3130

31+
import org.key_project.logic.Name;
3232
import org.key_project.util.collection.ImmutableArray;
3333
import org.key_project.util.collection.ImmutableSLList;
3434

key.core.rifl/src/main/java/de/uka/ilkd/key/util/rifl/RIFLHandler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
import java.util.Map.Entry;
88

99
import de.uka.ilkd.key.util.LinkedHashMap;
10-
import de.uka.ilkd.key.util.Pair;
1110

1211
import org.key_project.util.collection.KeYCollections;
12+
import org.key_project.util.collection.Pair;
1313

1414
import org.slf4j.Logger;
1515
import org.slf4j.LoggerFactory;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
* RIFL is short for "Requirements for Information Flow Language",
3+
* a tool-indepentent specification language developed in the RS3 project.
4+
* The RIFL/Java dialect is documented in XXX.
5+
* This package contains a transformer from input RIFL files (XML) and
6+
* original Java files to JML* annotated files.
7+
*/
8+
package de.uka.ilkd.key.util.rifl;

key.core.rifl/src/main/java/de/uka/ilkd/key/util/rifl/package.html

-17
This file was deleted.

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/rule/label/BlockContractValidityTermLabelUpdate.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import java.util.Set;
77

88
import de.uka.ilkd.key.java.Services;
9-
import de.uka.ilkd.key.logic.Name;
109
import de.uka.ilkd.key.logic.PosInOccurrence;
1110
import de.uka.ilkd.key.logic.Term;
1211
import de.uka.ilkd.key.logic.label.BlockContractValidityTermLabel;
@@ -18,6 +17,7 @@
1817
import de.uka.ilkd.key.rule.RuleApp;
1918
import de.uka.ilkd.key.symbolic_execution.util.SymbolicExecutionUtil;
2019

20+
import org.key_project.logic.Name;
2121
import org.key_project.util.collection.ImmutableList;
2222
import org.key_project.util.collection.ImmutableSLList;
2323
import org.key_project.util.java.CollectionUtil;

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/rule/label/FormulaTermLabelRefactoring.java

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
import de.uka.ilkd.key.rule.merge.CloseAfterMerge;
1919
import de.uka.ilkd.key.symbolic_execution.TruthValueTracingUtil;
2020

21+
import org.key_project.logic.Name;
2122
import org.key_project.util.collection.ImmutableList;
2223
import org.key_project.util.java.CollectionUtil;
2324

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/rule/label/FormulaTermLabelUpdate.java

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import de.uka.ilkd.key.rule.TacletApp;
2424
import de.uka.ilkd.key.symbolic_execution.TruthValueTracingUtil;
2525

26+
import org.key_project.logic.Name;
2627
import org.key_project.util.collection.ImmutableList;
2728
import org.key_project.util.java.CollectionUtil;
2829

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/rule/label/LoopBodyTermLabelUpdate.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import java.util.Set;
77

88
import de.uka.ilkd.key.java.Services;
9-
import de.uka.ilkd.key.logic.Name;
109
import de.uka.ilkd.key.logic.PosInOccurrence;
1110
import de.uka.ilkd.key.logic.Term;
1211
import de.uka.ilkd.key.logic.label.TermLabel;
@@ -16,6 +15,7 @@
1615
import de.uka.ilkd.key.rule.WhileInvariantRule;
1716
import de.uka.ilkd.key.symbolic_execution.util.SymbolicExecutionUtil;
1817

18+
import org.key_project.logic.Name;
1919
import org.key_project.util.collection.ImmutableList;
2020
import org.key_project.util.collection.ImmutableSLList;
2121

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/rule/label/LoopInvariantNormalBehaviorTermLabelUpdate.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import java.util.Set;
77

88
import de.uka.ilkd.key.java.Services;
9-
import de.uka.ilkd.key.logic.Name;
109
import de.uka.ilkd.key.logic.PosInOccurrence;
1110
import de.uka.ilkd.key.logic.Term;
1211
import de.uka.ilkd.key.logic.label.TermLabel;
@@ -16,6 +15,7 @@
1615
import de.uka.ilkd.key.rule.WhileInvariantRule;
1716
import de.uka.ilkd.key.symbolic_execution.util.SymbolicExecutionUtil;
1817

18+
import org.key_project.logic.Name;
1919
import org.key_project.util.collection.ImmutableList;
2020
import org.key_project.util.collection.ImmutableSLList;
2121

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/rule/label/RemoveInCheckBranchesTermLabelRefactoring.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
package de.uka.ilkd.key.rule.label;
55

66
import de.uka.ilkd.key.java.Services;
7-
import de.uka.ilkd.key.logic.Name;
87
import de.uka.ilkd.key.logic.PosInOccurrence;
98
import de.uka.ilkd.key.logic.Term;
109
import de.uka.ilkd.key.logic.label.LabelCollection;
@@ -20,6 +19,7 @@
2019
import de.uka.ilkd.key.rule.UseOperationContractRule;
2120
import de.uka.ilkd.key.rule.WhileInvariantRule;
2221

22+
import org.key_project.logic.Name;
2323
import org.key_project.util.collection.ImmutableList;
2424
import org.key_project.util.collection.ImmutableSLList;
2525

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/rule/label/SymbolicExecutionTermLabelUpdate.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
import java.util.Set;
77

88
import de.uka.ilkd.key.java.Services;
9-
import de.uka.ilkd.key.logic.Name;
109
import de.uka.ilkd.key.logic.PosInOccurrence;
1110
import de.uka.ilkd.key.logic.Term;
1211
import de.uka.ilkd.key.logic.label.SymbolicExecutionTermLabel;
1312
import de.uka.ilkd.key.logic.label.TermLabel;
1413
import de.uka.ilkd.key.logic.label.TermLabelState;
1514
import de.uka.ilkd.key.rule.*;
1615

16+
import org.key_project.logic.Name;
1717
import org.key_project.util.collection.ImmutableList;
1818
import org.key_project.util.collection.ImmutableSLList;
1919
import org.key_project.util.java.CollectionUtil;

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/symbolic_execution/AbstractUpdateExtractor.java

+13-10
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
import de.uka.ilkd.key.java.Services;
1010
import de.uka.ilkd.key.ldt.HeapLDT;
11+
import de.uka.ilkd.key.ldt.JavaDLTheory;
1112
import de.uka.ilkd.key.logic.*;
1213
import de.uka.ilkd.key.logic.label.OriginTermLabel;
1314
import de.uka.ilkd.key.logic.op.*;
14-
import de.uka.ilkd.key.logic.sort.Sort;
1515
import de.uka.ilkd.key.proof.Goal;
1616
import de.uka.ilkd.key.proof.Node;
1717
import de.uka.ilkd.key.proof.Proof;
@@ -25,6 +25,8 @@
2525
import de.uka.ilkd.key.symbolic_execution.util.SymbolicExecutionSideProofUtil;
2626
import de.uka.ilkd.key.symbolic_execution.util.SymbolicExecutionUtil;
2727

28+
import org.key_project.logic.Name;
29+
import org.key_project.logic.sort.Sort;
2830
import org.key_project.util.Strings;
2931
import org.key_project.util.collection.ImmutableList;
3032
import org.key_project.util.collection.ImmutableSLList;
@@ -567,9 +569,9 @@ protected Term createLocationPredicateAndTerm(
567569
sorts[i] = arguments[i].sort();
568570
}
569571
// 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);
573575
// Create formula which contains the value interested in.
574576
Term newTerm = getServices().getTermBuilder().func(newPredicate, arguments);
575577
return newTerm;
@@ -788,12 +790,13 @@ public ExtractLocationParameter(Term arrayStartIndex, Term arrayEndIndex, Term p
788790
OriginTermLabel.removeOriginLabels(arrayStartIndex, getServices());
789791
this.arrayEndIndex = OriginTermLabel.removeOriginLabels(arrayEndIndex, getServices());
790792
TermBuilder tb = getServices().getTermBuilder();
791-
Function constantFunction = new Function(
793+
JFunction constantFunction = new JFunction(
792794
new Name(tb.newName(ExecutionAllArrayIndicesVariable.ARRAY_INDEX_CONSTANT_NAME)),
793795
getServices().getTypeConverter().getIntegerLDT().targetSort());
794796
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);
797800
this.notAValue = tb.func(notAValueFunction);
798801
}
799802

@@ -939,19 +942,19 @@ public Term createPreValueTerm() {
939942
} else {
940943
if (getServices().getJavaInfo().getArrayLength() == programVariable) {
941944
// Special handling for length attribute of arrays
942-
Function function =
945+
JFunction function =
943946
getServices().getTypeConverter().getHeapLDT().getLength();
944947
return tb.func(function, createPreParentTerm());
945948
} else {
946-
Function function =
949+
JFunction function =
947950
getServices().getTypeConverter().getHeapLDT().getFieldSymbolForPV(
948951
(LocationVariable) programVariable, getServices());
949952
return tb.dot(programVariable.sort(), createPreParentTerm(), function);
950953
}
951954
}
952955
} else {
953956
if (programVariable.isStatic()) {
954-
Function function = getServices().getTypeConverter().getHeapLDT()
957+
JFunction function = getServices().getTypeConverter().getHeapLDT()
955958
.getFieldSymbolForPV((LocationVariable) programVariable, getServices());
956959
return tb.staticDot(programVariable.sort(), function);
957960
} else {

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/symbolic_execution/ExecutionNodeReader.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import de.uka.ilkd.key.logic.Term;
2121
import de.uka.ilkd.key.logic.op.IProgramMethod;
2222
import de.uka.ilkd.key.logic.op.IProgramVariable;
23-
import de.uka.ilkd.key.logic.sort.Sort;
2423
import de.uka.ilkd.key.proof.Node;
2524
import de.uka.ilkd.key.proof.NodeInfo;
2625
import de.uka.ilkd.key.proof.Proof;
@@ -34,10 +33,11 @@
3433
import de.uka.ilkd.key.symbolic_execution.model.IExecutionTermination.TerminationKind;
3534
import de.uka.ilkd.key.symbolic_execution.object_model.ISymbolicEquivalenceClass;
3635
import de.uka.ilkd.key.symbolic_execution.object_model.ISymbolicLayout;
37-
import de.uka.ilkd.key.util.Pair;
3836

37+
import org.key_project.logic.sort.Sort;
3938
import org.key_project.util.collection.ImmutableList;
4039
import org.key_project.util.collection.ImmutableSLList;
40+
import org.key_project.util.collection.Pair;
4141
import org.key_project.util.java.CollectionUtil;
4242

4343
import org.xml.sax.Attributes;

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/symbolic_execution/ExecutionVariableExtractor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
import de.uka.ilkd.key.symbolic_execution.model.impl.AbstractExecutionValue;
2020
import de.uka.ilkd.key.symbolic_execution.model.impl.AbstractExecutionVariable;
2121
import de.uka.ilkd.key.symbolic_execution.util.SymbolicExecutionUtil;
22-
import de.uka.ilkd.key.util.Pair;
2322

2423
import org.key_project.util.collection.ImmutableList;
2524
import org.key_project.util.collection.ImmutableSLList;
25+
import org.key_project.util.collection.Pair;
2626

2727
/**
2828
* Extracts the current state and represents it as {@link IExecutionVariable}s.

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/symbolic_execution/SymbolicExecutionTreeBuilder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@
3636
import de.uka.ilkd.key.symbolic_execution.util.SymbolicExecutionUtil;
3737
import de.uka.ilkd.key.util.MiscTools;
3838
import de.uka.ilkd.key.util.NodePreorderIterator;
39-
import de.uka.ilkd.key.util.Pair;
4039

4140
import org.key_project.util.collection.ImmutableList;
4241
import org.key_project.util.collection.ImmutableSLList;
42+
import org.key_project.util.collection.Pair;
4343
import org.key_project.util.java.ArrayUtil;
4444

4545
/**

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/symbolic_execution/SymbolicLayoutExtractor.java

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import de.uka.ilkd.key.symbolic_execution.util.SymbolicExecutionUtil;
2626
import de.uka.ilkd.key.util.ProofStarter;
2727

28+
import org.key_project.logic.Name;
2829
import org.key_project.util.collection.DefaultImmutableSet;
2930
import org.key_project.util.collection.ImmutableList;
3031
import org.key_project.util.collection.ImmutableSLList;

key.core.symbolic_execution/src/main/java/de/uka/ilkd/key/symbolic_execution/SymbolicLayoutReader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
import de.uka.ilkd.key.logic.Term;
2020
import de.uka.ilkd.key.logic.op.IProgramVariable;
21-
import de.uka.ilkd.key.logic.sort.Sort;
2221
import de.uka.ilkd.key.symbolic_execution.object_model.IModelSettings;
2322
import de.uka.ilkd.key.symbolic_execution.object_model.ISymbolicAssociation;
2423
import de.uka.ilkd.key.symbolic_execution.object_model.ISymbolicAssociationValueContainer;
@@ -29,6 +28,7 @@
2928
import de.uka.ilkd.key.symbolic_execution.object_model.ISymbolicState;
3029
import de.uka.ilkd.key.symbolic_execution.object_model.ISymbolicValue;
3130

31+
import org.key_project.logic.sort.Sort;
3232
import org.key_project.util.collection.ImmutableList;
3333
import org.key_project.util.collection.ImmutableSLList;
3434

0 commit comments

Comments
 (0)