mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 03:15:50 +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
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _ARRAY_FACTORY_H_
|
||||
#define _ARRAY_FACTORY_H_
|
||||
#ifndef ARRAY_FACTORY_H_
|
||||
#define ARRAY_FACTORY_H_
|
||||
|
||||
#include"struct_factory.h"
|
||||
|
||||
|
@ -41,5 +41,5 @@ public:
|
|||
virtual expr * get_fresh_value(sort * s);
|
||||
};
|
||||
|
||||
#endif /* _ARRAY_FACTORY_H_ */
|
||||
#endif /* ARRAY_FACTORY_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DATATYPE_FACTORY_H_
|
||||
#define _DATATYPE_FACTORY_H_
|
||||
#ifndef DATATYPE_FACTORY_H_
|
||||
#define DATATYPE_FACTORY_H_
|
||||
|
||||
#include"struct_factory.h"
|
||||
#include"datatype_decl_plugin.h"
|
||||
|
@ -38,5 +38,5 @@ public:
|
|||
virtual expr * get_fresh_value(sort * s);
|
||||
};
|
||||
|
||||
#endif /* _DATATYPE_FACTORY_H_ */
|
||||
#endif /* DATATYPE_FACTORY_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _NUMERAL_FACTORY_H_
|
||||
#define _NUMERAL_FACTORY_H_
|
||||
#ifndef NUMERAL_FACTORY_H_
|
||||
#define NUMERAL_FACTORY_H_
|
||||
|
||||
#include"value_factory.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
|
@ -53,5 +53,5 @@ public:
|
|||
app * mk_value(rational const & val, unsigned bv_size);
|
||||
};
|
||||
|
||||
#endif /* _NUMERAL_FACTORY_H_ */
|
||||
#endif /* NUMERAL_FACTORY_H_ */
|
||||
|
||||
|
|
|
@ -25,8 +25,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _PROTO_MODEL_H_
|
||||
#define _PROTO_MODEL_H_
|
||||
#ifndef PROTO_MODEL_H_
|
||||
#define PROTO_MODEL_H_
|
||||
|
||||
#include"model_core.h"
|
||||
#include"value_factory.h"
|
||||
|
@ -114,5 +114,5 @@ public:
|
|||
|
||||
typedef ref<proto_model> proto_model_ref;
|
||||
|
||||
#endif /* _PROTO_MODEL_H_ */
|
||||
#endif /* PROTO_MODEL_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _STRUCT_FACTORY_H_
|
||||
#define _STRUCT_FACTORY_H_
|
||||
#ifndef STRUCT_FACTORY_H_
|
||||
#define STRUCT_FACTORY_H_
|
||||
|
||||
#include"value_factory.h"
|
||||
#include"obj_hashtable.h"
|
||||
|
@ -50,5 +50,5 @@ public:
|
|||
virtual void register_value(expr * array_value);
|
||||
};
|
||||
|
||||
#endif /* _STRUCT_FACTORY_H_ */
|
||||
#endif /* STRUCT_FACTORY_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _VALUE_FACTORY_H_
|
||||
#define _VALUE_FACTORY_H_
|
||||
#ifndef VALUE_FACTORY_H_
|
||||
#define VALUE_FACTORY_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"obj_hashtable.h"
|
||||
|
@ -266,5 +266,5 @@ public:
|
|||
virtual void register_value(expr * n);
|
||||
};
|
||||
|
||||
#endif /* _VALUE_FACTORY_H_ */
|
||||
#endif /* VALUE_FACTORY_H_ */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue