Set incomplete if not applying ho extensionality (#6281)
[cvc5.git] / src / prop / sat_solver_factory.h
index a04bcaaf4d5d9184aa1ff4c3d560462fcb4e7241..71e28ac3928129be618bf4889a7ba4b8d70f7c76 100644 (file)
@@ -2,10 +2,10 @@
 /*! \file sat_solver_factory.h
  ** \verbatim
  ** Top contributors (to current version):
- **   Dejan Jovanovic, Tim King, Morgan Deters
+ **   Mathias Preiner, Liana Hadarean, Aina Niemetz
  ** This file is part of the CVC4 project.
- ** Copyright (c) 2009-2016 by the authors listed in the file AUTHORS
- ** in the top-level source directory) and their institutional affiliations.
+ ** Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
+ ** in the top-level source directory and their institutional affiliations.
  ** All rights reserved.  See the file COPYING in the top-level source
  ** directory for licensing information.\endverbatim
  **
 
 #include "cvc4_private.h"
 
-#pragma once
+#ifndef CVC4__PROP__SAT_SOLVER_FACTORY_H
+#define CVC4__PROP__SAT_SOLVER_FACTORY_H
 
 #include <string>
 #include <vector>
 
 #include "context/context.h"
+#include "prop/minisat/minisat.h"
 #include "prop/sat_solver.h"
 #include "util/statistics_registry.h"
 
-namespace CVC4 {
+namespace cvc5 {
 namespace prop {
 
-class SatSolverFactory {
-public:
-
+class SatSolverFactory
+{
+ public:
   static BVSatSolverInterface* createMinisat(context::Context* mainSatContext,
                                              StatisticsRegistry* registry,
                                              const std::string& name = "");
-  static DPLLSatSolverInterface* createDPLLMinisat(StatisticsRegistry* registry);
+
+  static MinisatSatSolver* createCDCLTMinisat(StatisticsRegistry* registry);
+
   static SatSolver* createCryptoMinisat(StatisticsRegistry* registry,
                                         const std::string& name = "");
 
-};/* class SatSolverFactory */
+  static SatSolver* createCadical(StatisticsRegistry* registry,
+                                  const std::string& name = "");
+
+  static SatSolver* createKissat(StatisticsRegistry* registry,
+                                 const std::string& name = "");
+}; /* class SatSolverFactory */
+
+}  // namespace prop
+}  // namespace cvc5
 
-}/* CVC4::prop namespace */
-}/* CVC4 namespace */
+#endif  // CVC4__PROP__SAT_SOLVER_FACTORY_H