3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

update header guards to be C++ style. Fixes issue #9

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-07-08 23:18:40 -07:00
parent f145ceecb4
commit 4bc044c982
676 changed files with 1679 additions and 1619 deletions

View file

@ -16,12 +16,12 @@ Author:
Revision History:
--*/
#ifndef _DIMACS_H_
#define _DIMACS_H_
#ifndef DIMACS_H_
#define DIMACS_H_
#include"sat_types.h"
void parse_dimacs(std::istream & s, sat::solver & solver);
#endif /* _DIMACS_PARSER_H_ */
#endif /* DIMACS_PARSER_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_ASYMM_BRANCH_H_
#define _SAT_ASYMM_BRANCH_H_
#ifndef SAT_ASYMM_BRANCH_H_
#define SAT_ASYMM_BRANCH_H_
#include"sat_types.h"
#include"statistics.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_BCEQ_H_
#define _SAT_BCEQ_H_
#ifndef SAT_BCEQ_H_
#define SAT_BCEQ_H_
#include"sat_types.h"
#include "union_find.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_CLAUSE_H_
#define _SAT_CLAUSE_H_
#ifndef SAT_CLAUSE_H_
#define SAT_CLAUSE_H_
#include"sat_types.h"
#include"small_object_allocator.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_CLAUSE_SET_H_
#define _SAT_CLAUSE_SET_H_
#ifndef SAT_CLAUSE_SET_H_
#define SAT_CLAUSE_SET_H_
#include"sat_clause.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_CLAUSE_USE_LIST_H_
#define _SAT_CLAUSE_USE_LIST_H_
#ifndef SAT_CLAUSE_USE_LIST_H_
#define SAT_CLAUSE_USE_LIST_H_
#include"sat_types.h"
#include"trace.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_CLEANER_H_
#define _SAT_CLEANER_H_
#ifndef SAT_CLEANER_H_
#define SAT_CLEANER_H_
#include"sat_types.h"
#include"statistics.h"

View file

@ -17,8 +17,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_CONFIG_H_
#define _SAT_CONFIG_H_
#ifndef SAT_CONFIG_H_
#define SAT_CONFIG_H_
#include"params.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_ELIM_EQS_H_
#define _SAT_ELIM_EQS_H_
#ifndef SAT_ELIM_EQS_H_
#define SAT_ELIM_EQS_H_
#include"sat_types.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_EXTENSION_H_
#define _SAT_EXTENSION_H_
#ifndef SAT_EXTENSION_H_
#define SAT_EXTENSION_H_
#include"sat_types.h"
#include"params.h"

View file

@ -26,8 +26,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_IFF3_FINDER_H_
#define _SAT_IFF3_FINDER_H_
#ifndef SAT_IFF3_FINDER_H_
#define SAT_IFF3_FINDER_H_
#include"sat_types.h"

View file

@ -17,8 +17,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_INTEGRITY_CHECKER_H_
#define _SAT_INTEGRITY_CHECKER_H_
#ifndef SAT_INTEGRITY_CHECKER_H_
#define SAT_INTEGRITY_CHECKER_H_
#include"sat_types.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_JUSTIFICATIONS_H_
#define _SAT_JUSTIFICATIONS_H_
#ifndef SAT_JUSTIFICATIONS_H_
#define SAT_JUSTIFICATIONS_H_
namespace sat {

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_MODEL_CONVERTER_H_
#define _SAT_MODEL_CONVERTER_H_
#ifndef SAT_MODEL_CONVERTER_H_
#define SAT_MODEL_CONVERTER_H_
#include"sat_types.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _SAT_MUS_H_
#define _SAT_MUS_H_
#ifndef SAT_MUS_H_
#define SAT_MUS_H_
namespace sat {
class mus {

View file

@ -17,8 +17,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_PROBING_H_
#define _SAT_PROBING_H_
#ifndef SAT_PROBING_H_
#define SAT_PROBING_H_
#include"sat_types.h"
#include"params.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_SCC_H_
#define _SAT_SCC_H_
#ifndef SAT_SCC_H_
#define SAT_SCC_H_
#include"sat_types.h"
#include"statistics.h"

View file

@ -18,8 +18,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_SIMPLIFIER_H_
#define _SAT_SIMPLIFIER_H_
#ifndef SAT_SIMPLIFIER_H_
#define SAT_SIMPLIFIER_H_
#include"sat_types.h"
#include"sat_clause.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _SAT_SLS_H_
#define _SAT_SLS_H_
#ifndef SAT_SLS_H_
#define SAT_SLS_H_
#include "util.h"
#include "sat_simplifier.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_SOLVER_H_
#define _SAT_SOLVER_H_
#ifndef SAT_SOLVER_H_
#define SAT_SOLVER_H_
#include"sat_types.h"
#include"sat_clause.h"

View file

@ -17,8 +17,8 @@ Notes:
--*/
#ifndef _HS_INC_SAT_SOLVER_H_
#define _HS_INC_SAT_SOLVER_H_
#ifndef HS_INC_SAT_SOLVER_H_
#define HS_INC_SAT_SOLVER_H_
#include "solver.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_TYPES_H_
#define _SAT_TYPES_H_
#ifndef SAT_TYPES_H_
#define SAT_TYPES_H_
#include"debug.h"
#include"approx_set.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_VAR_QUEUE_H_
#define _SAT_VAR_QUEUE_H_
#ifndef SAT_VAR_QUEUE_H_
#define SAT_VAR_QUEUE_H_
#include"heap.h"
#include"sat_types.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SAT_WATCHED_H_
#define _SAT_WATCHED_H_
#ifndef SAT_WATCHED_H_
#define SAT_WATCHED_H_
#include"sat_types.h"
#include"vector.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _ATOM2BOOL_VAR_H_
#define _ATOM2BOOL_VAR_H_
#ifndef ATOM2BOOL_VAR_H_
#define ATOM2BOOL_VAR_H_
#include"expr2var.h"
#include"sat_types.h"

View file

@ -26,8 +26,8 @@ Author:
Notes:
--*/
#ifndef _GOAL2SAT_H_
#define _GOAL2SAT_H_
#ifndef GOAL2SAT_H_
#define GOAL2SAT_H_
#include"goal.h"
#include"sat_solver.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _SAT_TACTIC_H_
#define _SAT_TACTIC_H_
#ifndef SAT_TACTIC_H_
#define SAT_TACTIC_H_
#include"params.h"
class ast_manager;