mirror of
https://github.com/Z3Prover/z3
synced 2025-08-19 01:32:17 +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
|
@ -21,8 +21,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _EXPR_OFFSET_H_
|
||||
#define _EXPR_OFFSET_H_
|
||||
#ifndef EXPR_OFFSET_H_
|
||||
#define EXPR_OFFSET_H_
|
||||
|
||||
#include"ast.h"
|
||||
|
||||
|
@ -50,4 +50,4 @@ public:
|
|||
typedef std::pair<expr_offset, expr_offset> expr_offset_pair;
|
||||
typedef pair_hash<obj_hash<expr_offset>, obj_hash<expr_offset> > expr_offset_pair_hash;
|
||||
|
||||
#endif /* _EXPR_OFFSET_H_ */
|
||||
#endif /* EXPR_OFFSET_H_ */
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _EXPR_OFFSET_MAP_H_
|
||||
#define _EXPR_OFFSET_MAP_H_
|
||||
#ifndef EXPR_OFFSET_MAP_H_
|
||||
#define EXPR_OFFSET_MAP_H_
|
||||
|
||||
#include"expr_offset.h"
|
||||
#include"vector.h"
|
||||
|
@ -91,4 +91,4 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
#endif /* _EXPR_OFFSET_MAP_H_ */
|
||||
#endif /* EXPR_OFFSET_MAP_H_ */
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _MATCHER_H_
|
||||
#define _MATCHER_H_
|
||||
#ifndef MATCHER_H_
|
||||
#define MATCHER_H_
|
||||
|
||||
#include"substitution.h"
|
||||
#include"hashtable.h"
|
||||
|
@ -59,5 +59,5 @@ public:
|
|||
bool operator()(expr * e1, expr * e2, substitution & s);
|
||||
};
|
||||
|
||||
#endif /* _MATCHER_H_ */
|
||||
#endif /* MATCHER_H_ */
|
||||
|
||||
|
|
|
@ -30,8 +30,8 @@ Revision History:
|
|||
of the current substitution by the number of quantified variables.
|
||||
|
||||
--*/
|
||||
#ifndef _SUBSTITUTION_H_
|
||||
#define _SUBSTITUTION_H_
|
||||
#ifndef SUBSTITUTION_H_
|
||||
#define SUBSTITUTION_H_
|
||||
|
||||
#include"expr_offset_map.h"
|
||||
#include"var_offset_map.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _SUBSTITUTION_TREE_H_
|
||||
#define _SUBSTITUTION_TREE_H_
|
||||
#ifndef SUBSTITUTION_TREE_H_
|
||||
#define SUBSTITUTION_TREE_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"substitution.h"
|
||||
|
@ -146,5 +146,5 @@ public:
|
|||
void display(std::ostream & out) const;
|
||||
};
|
||||
|
||||
#endif /* _SUBSTITUTION_TREE_H_ */
|
||||
#endif /* SUBSTITUTION_TREE_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _UNIFIER_H_
|
||||
#define _UNIFIER_H_
|
||||
#ifndef UNIFIER_H_
|
||||
#define UNIFIER_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"substitution.h"
|
||||
|
@ -66,5 +66,5 @@ public:
|
|||
bool operator()(expr * e1, expr * e2, substitution & s, bool use_offsets = true);
|
||||
};
|
||||
|
||||
#endif /* _UNIFIER_H_ */
|
||||
#endif /* UNIFIER_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _VAR_OFFSET_MAP_H_
|
||||
#define _VAR_OFFSET_MAP_H_
|
||||
#ifndef VAR_OFFSET_MAP_H_
|
||||
#define VAR_OFFSET_MAP_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"vector.h"
|
||||
|
@ -111,4 +111,4 @@ public:
|
|||
|
||||
};
|
||||
|
||||
#endif /* _VAR_OFFSET_MAP_H_ */
|
||||
#endif /* VAR_OFFSET_MAP_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue