SMT-RAT  24.02
Toolbox for Strategic and Parallel Satisfiability-Modulo-Theories Solving
operator.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "../datastructures/derivation.h"
4 #include "../datastructures/representation.h"
5 
6 /**
7  * Projection operators.
8  *
9  * Currently, only the McCallum based operator is implemented.
10  *
11  * ## Relevant projection functions
12  *
13  * We refer to @ref algorithms for usage examples.
14  *
15  * ### Cells
16  * - project_basic_properties
17  * - delineate_properties
18  * - project_cell_properties
19  *
20  * ### Coverings
21  *
22  * - project_basic_properties (on each cell individually)
23  * - delineate_properties (on each cell individually)
24  * - project_covering_properties
25  *
26  * ### Delineation
27  *
28  * - project_basic_properties
29  * - delineate_properties
30  * - project_delineation_properties
31  *
32  */
34 
35 }
Projection operators.
Definition: operator.h:33