Remove some dead code.
[cvc5.git] / src / prop / sat_solver_factory.cpp
1 /********************* */
2 /*! \file sat_solver_factory.cpp
3 ** \verbatim
4 ** Original author: Dejan Jovanovic
5 ** Major contributors: Tim King
6 ** Minor contributors (to current version): Morgan Deters, Liana Hadarean
7 ** This file is part of the CVC4 project.
8 ** Copyright (c) 2009-2014 New York University and The University of Iowa
9 ** See the file COPYING in the top-level source directory for licensing
10 ** information.\endverbatim
11 **
12 ** \brief SAT Solver creation facility.
13 **
14 ** SAT Solver.
15 **/
16
17 #include "prop/sat_solver_factory.h"
18 #include "prop/minisat/minisat.h"
19 #include "prop/bvminisat/bvminisat.h"
20
21 namespace CVC4 {
22 namespace prop {
23
24 BVSatSolverInterface* SatSolverFactory::createMinisat(context::Context* mainSatContext, const std::string& name) {
25 return new BVMinisatSatSolver(mainSatContext, name);
26 }
27
28 DPLLSatSolverInterface* SatSolverFactory::createDPLLMinisat() {
29 return new MinisatSatSolver();
30 }
31
32 } /* CVC4::prop namespace */
33 } /* CVC4 namespace */