aboutsummaryrefslogblamecommitdiffhomepage
path: root/lib/Core/UserSearcher.h
blob: b0df8239ed27bf532123c1ba1bfebaefb3bcac49 (plain) (tree)


















                                                                                

                                 


                                                      
                                
//===-- 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 */