SMT-RAT
24.02
Toolbox for Strategic and Parallel Satisfiability-Modulo-Theories Solving
PPBooleanExploration.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
smtrat-modules/CoveringNGModule/CoveringNGModule.h
>
4
#include <
smtrat-modules/CoveringNGModule/CoveringNGModule.tpp
>
5
#include <
smtrat-modules/FPPModule/FPPModule.h
>
6
#include <
smtrat-solver/Manager.h
>
7
8
namespace
smtrat
{
9
10
11
namespace
internal {
12
13
struct
CoveringNGSettings
:
CoveringNGSettingsDefault
{
14
struct
formula_evaluation
{
15
using
Type
=
covering_ng::formula::GraphEvaluation
;
16
static
auto
create
(
cadcells::datastructures::Projections
& proj) {
17
auto
fe_implicant_ordering =
covering_ng::formula::complexity::sotd
;
18
std::size_t fe_results = 1;
19
auto
fe_constraint_ordering =
covering_ng::formula::complexity::min_tdeg
;
20
bool
fe_stop_evaluation_on_conflict =
false
;
21
bool
fe_preprocess =
true
;
22
bool
fe_postprocess =
false
;
23
auto
fe_boolean_exploration =
covering_ng::formula::GraphEvaluation::EXPLORATION
;
24
return
Type
(proj, fe_implicant_ordering, fe_results, fe_constraint_ordering, fe_stop_evaluation_on_conflict, fe_preprocess, fe_postprocess, fe_boolean_exploration);
25
}
26
};
27
};
28
29
}
30
31
class
CoveringNG_PPBooleanExploration
:
public
Manager
{
32
public
:
33
CoveringNG_PPBooleanExploration
() :
Manager
() {
34
setStrategy
(
35
addBackend
<
FPPModule<FPPSettings1>
>({
36
addBackend<CoveringNGModule<internal::CoveringNGSettings>>()
37
})
38
);
39
}
40
};
41
}
// namespace smtrat
CoveringNGModule.h
CoveringNGModule.tpp
FPPModule.h
Manager.h
smtrat::CoveringNG_PPBooleanExploration
Definition:
PPBooleanExploration.h:31
smtrat::CoveringNG_PPBooleanExploration::CoveringNG_PPBooleanExploration
CoveringNG_PPBooleanExploration()
Definition:
PPBooleanExploration.h:33
smtrat::FPPModule
Definition:
FPPModule.h:18
smtrat::Manager
Base class for solvers.
Definition:
Manager.h:34
smtrat::Manager::setStrategy
void setStrategy(const std::initializer_list< BackendLink > &backends)
Definition:
Manager.h:385
smtrat::Manager::addBackend
BackendLink addBackend(const std::initializer_list< BackendLink > &backends={})
Definition:
Manager.h:396
smtrat::cadcells::datastructures::Projections
Encapsulates all computations on polynomials.
Definition:
projections.h:46
smtrat::covering_ng::formula::GraphEvaluation
Definition:
FormulaEvaluationGraph.h:76
smtrat::covering_ng::formula::GraphEvaluation::EXPLORATION
@ EXPLORATION
Definition:
FormulaEvaluationGraph.h:79
smtrat::covering_ng::formula::complexity::min_tdeg
bool min_tdeg(cadcells::datastructures::Projections &proj, const cadcells::datastructures::PolyConstraint &a, const cadcells::datastructures::PolyConstraint &b)
Definition:
FormulaEvaluationComplexity.h:179
smtrat::covering_ng::formula::complexity::sotd
bool sotd(cadcells::datastructures::Projections &proj, const boost::container::flat_set< cadcells::datastructures::PolyConstraint > &a, const boost::container::flat_set< cadcells::datastructures::PolyConstraint > &b)
Dolzmann et al 2004.
Definition:
FormulaEvaluationComplexity.h:141
smtrat
Class to create the formulas for axioms.
Definition:
handle_options.h:10
smtrat::CoveringNGSettingsDefault
Definition:
CoveringNGSettings.h:13
smtrat::internal::CoveringNGSettings::formula_evaluation
Definition:
PPBooleanExploration.h:14
smtrat::internal::CoveringNGSettings::formula_evaluation::Type
covering_ng::formula::GraphEvaluation Type
Definition:
PPBooleanExploration.h:15
smtrat::internal::CoveringNGSettings::formula_evaluation::create
static auto create(cadcells::datastructures::Projections &proj)
Definition:
PPBooleanExploration.h:16
smtrat::internal::CoveringNGSettings
Definition:
PPBooleanExploration.h:13
smtrat-strategies
strategies
CoveringNG
PPBooleanExploration.h
Generated by
1.9.1