Skip to content

Update cbmc-tutorial.md #5537

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/cprover-manual/cbmc-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Let us have a closer look at this property and why it fails. To aid the
understanding of the problem, CBMC can generate a *counterexample trace*
for failed properties. To obtain this trace, run:

cbmc file1.c --bounds-check --trace
cbmc file1.c --bounds-check --pointer-check --trace

CBMC then prints a counterexample trace, that is, a program trace that
begins with `main` and ends in a state which violates the property. In
Expand All @@ -134,7 +134,7 @@ To simplify further processing of counterexample traces, CBMC supports XML as a
possible output format.

```
cbmc file1.c --trace --xml-ui
cbmc file1.c --bounds-check --pointer-check --trace --xml-ui
```

The specification of the XML trace output can be found here: [XML
Expand Down