3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-23 11:37:54 +00:00

fix flipper

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-08-15 18:30:06 -07:00
parent be1cceba34
commit ddb9e6e8d4
7 changed files with 86 additions and 16 deletions

View file

@ -23,12 +23,14 @@ namespace sat {
class mus {
literal_vector m_core;
literal_vector m_mus;
bool m_is_active;
solver& s;
public:
mus(solver& s);
~mus();
lbool operator()();
bool is_active() const { return m_is_active; }
private:
lbool mus2();
void mr();