-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removal of Triple, and Quadruple (#3529)
- Loading branch information
Showing
45 changed files
with
574 additions
and
586 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
..._execution/src/main/java/de/uka/ilkd/key/symbolic_execution/rule/ResultsAndCondition.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* This file is part of KeY - https://key-project.org | ||
* KeY is licensed under the GNU General Public License Version 2 | ||
* SPDX-License-Identifier: GPL-2.0-only */ | ||
package de.uka.ilkd.key.symbolic_execution.rule; | ||
|
||
import java.util.Set; | ||
|
||
import de.uka.ilkd.key.logic.Term; | ||
import de.uka.ilkd.key.proof.Node; | ||
|
||
/** | ||
* The return value of a side proof. | ||
* | ||
* @param result a term representing the result (first formula of succedent) | ||
* @param conditions formulas of the antecedent | ||
* @param node the final node of the side proof | ||
*/ | ||
public record ResultsAndCondition(Term result, Set<Term> conditions, Node node) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
key.core/src/main/java/de/uka/ilkd/key/nparser/ProofScriptEntry.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* This file is part of KeY - https://key-project.org | ||
* KeY is licensed under the GNU General Public License Version 2 | ||
* SPDX-License-Identifier: GPL-2.0-only */ | ||
package de.uka.ilkd.key.nparser; | ||
|
||
import de.uka.ilkd.key.parser.Location; | ||
|
||
import org.jspecify.annotations.NonNull; | ||
|
||
/** | ||
* This struct encapsulate the information of a proofscript found in key files. | ||
* | ||
* @param script the content of the script | ||
* @param location location of the content | ||
* @author Alexander Weigl | ||
* @version 1 (23.04.24) | ||
*/ | ||
public record ProofScriptEntry(@NonNull String script, @NonNull Location location) { | ||
} |
Oops, something went wrong.