Skip to content

Commit 693f6df

Browse files
committed
add taclet name
1 parent 0aa2e8f commit 693f6df

File tree

1 file changed

+2
-1
lines changed
  • key.core/src/test/java/de/uka/ilkd/key/proof/runallproofs

1 file changed

+2
-1
lines changed

key.core/src/test/java/de/uka/ilkd/key/proof/runallproofs/ProveTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ public static void saveProofXml(Proof loadedProof, Path path) throws IOException
179179
}
180180

181181
private static void toXml(PrintWriter out, Node node) {
182-
out.format("\n<node label=\"%s\">", node.getNodeInfo().getBranchLabel());
182+
out.format("\n<node label=\"%s\" taclet=\"%s\">", node.getNodeInfo().getBranchLabel(),
183+
node.getAppliedRuleApp().rule().name());
183184
out.format("\n<raw><![CDATA[%s]]>\n</raw>", node.sequent());
184185
out.format("\n<lpr><![CDATA[%s]]>\n</lpr>",
185186
LogicPrinter.quickPrintSequent(node.sequent(), node.proof().getServices()));

0 commit comments

Comments
 (0)