forked from DrorFried/Synthesis-via-Decomposition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMFSGenerator.hpp
35 lines (28 loc) · 1.13 KB
/
MFSGenerator.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#pragma once
#include "CNFFormula.hpp"
#include "Set.hpp"
#include "Map.hpp"
#include "Vector.hpp"
#include "Graph.hpp"
#include "Optional.hpp"
#include "open-wbo/solvers/glucose4.1/core/Solver.h"
/**
* Class that generates Maximal Falsifiable Subsets using a SAT solver.
*/
class MFSGenerator
{
Set<BVar> _relevantIndicators; /*< indicator variables in the current connected component */
Vector<BVar> _indicatorVars; /*< indicator variables across all components by index */
Graph<size_t> _conflictGraph; /*< graph where every MIS represents an MFS */
Map<BVar, size_t> _index; /*< _index[v] == i iff _indicatorVars[i] = v */
Glucose::Solver _satSolver; /*< SAT solver used to generate MFS */
public:
/** Constructs a generator that produces MFS corresponding to MIS in the given conflict graph */
MFSGenerator(Set<BVar> relevantIndicators,
Vector<BVar> indicatorVars,
Graph<size_t> conflictGraph);
/** Generates a new MFS, or nothing if there are no MFS left */
Optional<Set<BVar>> newMFS();
/** Block an MSS such that future MFS will not be contained in it */
void blockMSS(const Set<BVar>& mss);
};