diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2018-11-01 17:50:42 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2018-11-02 13:32:05 +0000 |
commit | 8c9c1681155812a27b46ba131c44a5737afe67c3 (patch) | |
tree | cf91c728e92954e15423fd94c84a1399da7456ed /include | |
parent | 3caf3e985e4f35ac6ac04f61b92f11d2569550c6 (diff) | |
download | klee-8c9c1681155812a27b46ba131c44a5737afe67c3.tar.gz |
Introduced a constraint solving option category to which all the options in CmdLineOptions.cpp are currently added.
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/OptionCategories.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/klee/OptionCategories.h b/include/klee/OptionCategories.h new file mode 100644 index 00000000..34783d77 --- /dev/null +++ b/include/klee/OptionCategories.h @@ -0,0 +1,23 @@ +//===-- OptionCategories.h --------------------------------------*- C++ -*-===// +// +// The KLEE Symbolic Virtual Machine +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +/* + * This header defines the option categories used in KLEE. + */ + +#ifndef KLEE_SOLVERCOMMANDLINE_H +#define KLEE_SOLVERCOMMANDLINE_H + +#include "llvm/Support/CommandLine.h" + +namespace klee { + extern cl::OptionCategory SolvingCat; +} + +#endif |