-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Single files instead of one large files
- Loading branch information
Showing
38 changed files
with
455 additions
and
501 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
8 changes: 8 additions & 0 deletions
8
key.core/src/test/resources/de/uka/ilkd/key/macros/scripts/andRight.yml
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,8 @@ | ||
key: | | ||
\predicates { a; b; } | ||
\problem { a & b } | ||
script: | | ||
rule andRight; | ||
goals: | ||
- ==> b | ||
- ==> a |
90 changes: 0 additions & 90 deletions
90
key.core/src/test/resources/de/uka/ilkd/key/macros/scripts/cases.yml
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
key.core/src/test/resources/de/uka/ilkd/key/macros/scripts/hide.exec.yml
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,11 @@ | ||
key: | | ||
\predicates { a; b; c; d; e; f; } | ||
\problem { a -> b } | ||
script: | | ||
macro split-prop; | ||
hide "b ==>"; | ||
exception: |2 | ||
Error while executing script: This formula is not on the sequent: b | ||
Command: hide "b ==>"; |
9 changes: 9 additions & 0 deletions
9
key.core/src/test/resources/de/uka/ilkd/key/macros/scripts/hide.yml
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,9 @@ | ||
key: | | ||
\predicates { a; b; c; d; e; f; } | ||
\problem { a & b & c -> d | e | f } | ||
script: | | ||
macro split-prop; | ||
hide "a ==> d, e"; | ||
goals: | ||
- "b, c ==> f" |
9 changes: 9 additions & 0 deletions
9
key.core/src/test/resources/de/uka/ilkd/key/macros/scripts/rule.exc.yml
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,9 @@ | ||
key: | | ||
\predicates { a; b; } | ||
\problem { a & b } | ||
script: | | ||
rule andLeft; | ||
exception: | | ||
Error while executing script: No matching applications. | ||
Command: rule andLeft; |
10 changes: 10 additions & 0 deletions
10
key.core/src/test/resources/de/uka/ilkd/key/macros/scripts/selectFormula.yml
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,10 @@ | ||
key: | | ||
\predicates { a; b; c; } | ||
\problem { a & b & c} | ||
script: | | ||
macro split-prop; | ||
select formula="b"; | ||
goals: | ||
- ==> b | ||
- ==> a | ||
- ==> c |
9 changes: 9 additions & 0 deletions
9
key.core/src/test/resources/de/uka/ilkd/key/macros/scripts/unhide.yml
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,9 @@ | ||
key: | | ||
\problem { 2=3 -> 3=4 } | ||
script: | | ||
rule impRight; | ||
hide "2=3 ==> 3=4"; | ||
unhide "2=3 ==>"; | ||
unhide "==> 3=4"; | ||
goals: | ||
- 2 = 3 ==> 3 = 4 |
8 changes: 8 additions & 0 deletions
8
key.core/src/test/resources/de/uka/ilkd/key/macros/scripts/unhide2.yml
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,8 @@ | ||
key: | | ||
\problem { 2=3 -> 3=4 } | ||
script: | | ||
rule impRight; | ||
hide "2=3 ==> 3=4"; | ||
unhide "2=3 ==> 3=4"; | ||
goals: | ||
- 2 = 3 ==> 3 = 4 |
Oops, something went wrong.