Skip to content

Commit 6542ad3

Browse files
committed
Fix some execution tree options
1 parent 6ba37e9 commit 6542ad3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/options.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,11 @@ There are several options to modify how KLEE outputs statistics:
164164
* `-stats-write-after-instructions=N` - Write statistics after each `N` instructions, 0 to disable (*default=0*)
165165
* `-istats-write-after-instructions=N` - Write istats after each `N` instructions, 0 to disable (*default=0*)
166166

167-
## Process tree (execution tree)
167+
## Execution tree
168168

169-
* `--compress-process-tree` - Remove intermediate nodes in the process tree whenever possible (*default=false*)
170-
* `--ptree-batch-size=<uint>` - Number of process tree nodes to batch for writing (*default=100*)
171-
* `--write-ptree` - Write process tree into `ptree.db` (*default=false*)
169+
* `--compress-exec-tree` - Remove intermediate nodes in the execution tree whenever possible (*default=false*)
170+
* `--exec-tree-batch-size=<uint>` - Number of execution tree nodes to batch for writing (*default=100*)
171+
* `--write-exec-tree` - Write execution tree into `exec_tree.db` (*default=false*)
172172

173173
Since symbolic execution aims to execute all feasible paths of a program, it creates an exploration tree instead of a single execution path.
174174
KLEE maintains this tree in memory when either a searcher (e.g. `random-path`) depends on it or the user explicitly requests a copy on disk (`-write-ptree`).
@@ -177,7 +177,7 @@ The batching interval can be modified with `--ptree-batch-size`.
177177
Afterwards, [klee-ptree]({{site.baseurl}}/docs/tools/#klee-ptree) can be used to convert the tree into an `.svg` file or to print some useful statistics.
178178

179179
Sometimes the traversal of deep execution trees with the `random-path` searcher can become quite costly.
180-
`--compress-process-tree` can help in this case by reducing paths of long chains of unary edges to a single edge:
180+
`--compress-exec-tree` can help in this case by reducing paths of long chains of unary edges to a single edge:
181181

182182
```
183183
/\ /\

0 commit comments

Comments
 (0)