blob: b0df8239ed27bf532123c1ba1bfebaefb3bcac49 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | //===-- UserSearcher.h ------------------------------------------*- C++ -*-===//
//
//                     The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef KLEE_USERSEARCHER_H
#define KLEE_USERSEARCHER_H
namespace klee {
  class Executor;
  class Searcher;
  // XXX gross, should be on demand?
  bool userSearcherRequiresMD2U();
  void initializeSearchOptions();
  Searcher *constructUserSearcher(Executor &executor);
}
#endif /* KLEE_USERSEARCHER_H */
 |