about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2018-11-01 17:50:42 +0000
committerMartinNowack <martin.nowack@gmail.com>2018-11-02 13:32:05 +0000
commit8c9c1681155812a27b46ba131c44a5737afe67c3 (patch)
treecf91c728e92954e15423fd94c84a1399da7456ed /include
parent3caf3e985e4f35ac6ac04f61b92f11d2569550c6 (diff)
downloadklee-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.h23
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