We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4049f15 commit 4fcbd37Copy full SHA for 4fcbd37
doc/assets/README.md
@@ -0,0 +1,27 @@
1
+This folder contains resources for the documentation.
2
+
3
+# XML Spec
4
5
+The folllowing files relate to the specification of the XML trace output when using the `--xml-ui` flag.
6
7
+## xml_spec.xsd
8
+The`xml_spec.xsd` file is an XSD specification of the trace. You can validate an
9
+output xml file from CBMC using the following invocation:
10
11
+```bash
12
+$ cbmc --xml-ui main.c | \
13
+ xmllint --schema xml_spec.xsd --xpath "cprover/result/goto_trace" -
14
+```
15
16
+## xml_spec.tex
17
18
+This is a LaTeX document describing the specification of the trace. It can be compiled to pdf using:
19
20
21
+$ pdflatex -shell-escape xml_spec.tex
22
23
24
+This requires:
25
26
+ - texlive-latex-base
27
+ - texlive-latex-extra (for minted package)
0 commit comments