Skip to content

Commit ffe5e0d

Browse files
committed
fix schiffl_lemma_2
1 parent 9791002 commit ffe5e0d

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

key.core/src/main/java/de/uka/ilkd/key/scripts/ProofScriptEngine.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,12 @@ public void execute(AbstractUserInterfaceControl uiControl, List<ScriptCommandAs
137137

138138
String cmd = ast.asCommandLine();
139139

140-
final Node firstNode = stateMap.getFirstOpenAutomaticGoal().node();
141-
if (commandMonitor != null && stateMap.isEchoOn()) {
142-
commandMonitor.accept(new ExecuteInfo(cmd, start, firstNode.serialNr()));
143-
}
144-
145140
try {
141+
final Node firstNode = stateMap.getFirstOpenAutomaticGoal().node();
142+
if (commandMonitor != null && stateMap.isEchoOn()) {
143+
commandMonitor.accept(new ExecuteInfo(cmd, start, firstNode.serialNr()));
144+
}
145+
146146
ProofScriptCommand command = COMMANDS.get(name);
147147
if (command == null) {
148148
throw new ScriptException("Unknown command " + name + " at " + ast.location());

key.core/tacletProofs/seqPerm2/Taclet_schiffl_lemma_2.proof

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -404,14 +404,4 @@ instantiate hide var=iv with=(v_y_0);
404404
instantiate hide var=jv with=(jv_1);
405405
instantiate hide var=v_r with=(seqSwap(seqSwap(s_0, v_x_0, jv_0), v_y_0, jv_1));
406406
tryclose branch;
407-
rule seqNPermSwapNPerm formula=(seqNPerm(s_0));
408-
instantiate hide var=iv with=(v_x_0);
409-
instantiate hide var=jv with=(jv_0);
410-
rule impLeft;
411-
tryclose branch;
412-
rule seqNPermSwapNPerm formula=(seqNPerm(seqSwap(s_0,v_x_0,jv_0)));
413-
instantiate hide var=iv with=(v_y_0);
414-
instantiate hide var=jv with=(jv_1);
415-
instantiate hide var=v_r with=(seqSwap(seqSwap(s_0, v_x_0, jv_0), v_y_0, jv_1));
416-
tryclose branch;
417407
}

0 commit comments

Comments
 (0)