SMT-RAT  24.02
Toolbox for Strategic and Parallel Satisfiability-Modulo-Theories Solving
OnlySATPP.h
Go to the documentation of this file.
1 #pragma once
2 
4 
7 
8 namespace smtrat
9 {
10  /**
11  * A pure SAT solver with preprocessing.
12  */
13  class OnlySATPP:
14  public Manager
15  {
16  public:
18  setStrategy({
19  addBackend<FPPModule<FPPSettings1>>({
20  addBackend<SATModule<SATSettings1>>()
21  })
22  });
23  }
24 
25  };
26 
27 } // namespace smtrat
Base class for solvers.
Definition: Manager.h:34
void setStrategy(const std::initializer_list< BackendLink > &backends)
Definition: Manager.h:385
A pure SAT solver with preprocessing.
Definition: OnlySATPP.h:15
Class to create the formulas for axioms.