3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-18 02:16:40 +00:00

Reorganizing the code

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-20 15:30:42 -07:00
parent 8a6997960a
commit c66b9ab615
39 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,42 @@
/*++
Copyright (c) 2011 Microsoft Corporation
Module Name:
sat_integrity_checker.h
Abstract:
Checker whether the SAT solver internal datastructures
are consistent or not.
Author:
Leonardo de Moura (leonardo) 2011-05-21.
Revision History:
--*/
#ifndef _SAT_INTEGRITY_CHECKER_H_
#define _SAT_INTEGRITY_CHECKER_H_
#include"sat_types.h"
namespace sat {
class integrity_checker {
solver const & s;
public:
integrity_checker(solver const & s);
bool check_clause(clause const & c) const;
bool check_clauses(clause * const * begin, clause * const * end) const;
bool check_clauses() const;
bool check_learned_clauses() const;
bool check_assignment() const;
bool check_bool_vars() const;
bool check_watches() const;
bool check_reinit_stack() const;
bool operator()() const;
};
};
#endif