blob: d01a017f4ef3eb088eaf52b944461871d3c6efff (
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
 | //===-- 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();
  Searcher *constructUserSearcher(Executor &executor);
}
#endif
 |