mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +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:
parent
f145ceecb4
commit
4bc044c982
676 changed files with 1679 additions and 1619 deletions
|
@ -18,8 +18,8 @@ Notes:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _BIND_VARIABLES_H_
|
||||
#define _BIND_VARIABLES_H_
|
||||
#ifndef BIND_VARIABLES_H_
|
||||
#define BIND_VARIABLES_H_
|
||||
|
||||
#include"ast.h"
|
||||
|
||||
|
@ -48,4 +48,4 @@ public:
|
|||
void add_var(app* v);
|
||||
};
|
||||
|
||||
#endif /* _BIND_VARIABLES_H_ */
|
||||
#endif /* BIND_VARIABLES_H_ */
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_CONTEXT_H_
|
||||
#define _DL_CONTEXT_H_
|
||||
#ifndef DL_CONTEXT_H_
|
||||
#define DL_CONTEXT_H_
|
||||
|
||||
#ifdef _CYGWIN
|
||||
#undef min
|
||||
|
@ -586,5 +586,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_CONTEXT_H_ */
|
||||
#endif /* DL_CONTEXT_H_ */
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_COSTS_H_
|
||||
#define _DL_COSTS_H_
|
||||
#ifndef DL_COSTS_H_
|
||||
#define DL_COSTS_H_
|
||||
|
||||
#include<iosfwd>
|
||||
|
||||
|
@ -111,5 +111,5 @@ namespace datalog {
|
|||
};
|
||||
};
|
||||
|
||||
#endif /* _DL_COSTS_H_ */
|
||||
#endif /* DL_COSTS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_ENGINE_BASE_H_
|
||||
#define _DL_ENGINE_BASE_H_
|
||||
#ifndef DL_ENGINE_BASE_H_
|
||||
#define DL_ENGINE_BASE_H_
|
||||
|
||||
#include "model.h"
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_RULE_H_
|
||||
#define _DL_RULE_H_
|
||||
#ifndef DL_RULE_H_
|
||||
#define DL_RULE_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"dl_costs.h"
|
||||
|
@ -387,5 +387,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_RULE_H_ */
|
||||
#endif /* DL_RULE_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_RULE_SET_H_
|
||||
#define _DL_RULE_SET_H_
|
||||
#ifndef DL_RULE_SET_H_
|
||||
#define DL_RULE_SET_H_
|
||||
|
||||
#include"obj_hashtable.h"
|
||||
#include"dl_rule.h"
|
||||
|
@ -279,5 +279,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_RULE_SET_H_ */
|
||||
#endif /* DL_RULE_SET_H_ */
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_RULE_SUBSUMPTION_INDEX_H_
|
||||
#define _DL_RULE_SUBSUMPTION_INDEX_H_
|
||||
#ifndef DL_RULE_SUBSUMPTION_INDEX_H_
|
||||
#define DL_RULE_SUBSUMPTION_INDEX_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
|
||||
|
@ -61,5 +61,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_RULE_SUBSUMPTION_INDEX_H_ */
|
||||
#endif /* DL_RULE_SUBSUMPTION_INDEX_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_RULE_TRANSFORMER_H_
|
||||
#define _DL_RULE_TRANSFORMER_H_
|
||||
#ifndef DL_RULE_TRANSFORMER_H_
|
||||
#define DL_RULE_TRANSFORMER_H_
|
||||
|
||||
#include"map.h"
|
||||
#include"vector.h"
|
||||
|
@ -113,5 +113,5 @@ namespace datalog {
|
|||
};
|
||||
};
|
||||
|
||||
#endif /* _DL_RULE_TRANSFORMER_H_ */
|
||||
#endif /* DL_RULE_TRANSFORMER_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_UTIL_H_
|
||||
#define _DL_UTIL_H_
|
||||
#ifndef DL_UTIL_H_
|
||||
#define DL_UTIL_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"hashtable.h"
|
||||
|
@ -733,5 +733,5 @@ namespace datalog {
|
|||
bool read_uint64(const char * & s, uint64 & res);
|
||||
};
|
||||
|
||||
#endif /* _DL_UTIL_H_ */
|
||||
#endif /* DL_UTIL_H_ */
|
||||
|
||||
|
|
|
@ -22,8 +22,8 @@ Copyright (c) 2015 Microsoft Corporation
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _HNF_H_
|
||||
#define _HNF_H_
|
||||
#ifndef HNF_H_
|
||||
#define HNF_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"params.h"
|
||||
|
@ -51,4 +51,4 @@ class hnf {
|
|||
func_decl_ref_vector const& get_fresh_predicates();
|
||||
};
|
||||
|
||||
#endif /* _HNF_H_ */
|
||||
#endif /* HNF_H_ */
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _PROOF_UTILS_H_
|
||||
#define _PROOF_UTILS_H_
|
||||
#ifndef PROOF_UTILS_H_
|
||||
#define PROOF_UTILS_H_
|
||||
|
||||
class proof_utils {
|
||||
public:
|
||||
|
|
|
@ -18,8 +18,8 @@ Notes:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _RULE_PROPERTIES_H_
|
||||
#define _RULE_PROPERTIES_H_
|
||||
#ifndef RULE_PROPERTIES_H_
|
||||
#define RULE_PROPERTIES_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"datatype_decl_plugin.h"
|
||||
|
@ -62,4 +62,4 @@ namespace datalog {
|
|||
};
|
||||
}
|
||||
|
||||
#endif /* _RULE_PROPERTIES_H_ */
|
||||
#endif /* RULE_PROPERTIES_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue