From 8c9c1681155812a27b46ba131c44a5737afe67c3 Mon Sep 17 00:00:00 2001 From: Cristian Cadar Date: Thu, 1 Nov 2018 17:50:42 +0000 Subject: Introduced a constraint solving option category to which all the options in CmdLineOptions.cpp are currently added. --- include/klee/OptionCategories.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 include/klee/OptionCategories.h (limited to 'include') 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 -- cgit 1.4.1