mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55: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
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DYN_ACK_PARAMS_H_
|
||||
#define _DYN_ACK_PARAMS_H_
|
||||
#ifndef DYN_ACK_PARAMS_H_
|
||||
#define DYN_ACK_PARAMS_H_
|
||||
|
||||
#include"params.h"
|
||||
|
||||
|
@ -50,5 +50,5 @@ public:
|
|||
};
|
||||
|
||||
|
||||
#endif /* _DYN_ACK_PARAMS_H_ */
|
||||
#endif /* DYN_ACK_PARAMS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _PREPROCESSOR_PARAMS_H_
|
||||
#define _PREPROCESSOR_PARAMS_H_
|
||||
#ifndef PREPROCESSOR_PARAMS_H_
|
||||
#define PREPROCESSOR_PARAMS_H_
|
||||
|
||||
#include"pattern_inference_params.h"
|
||||
#include"bit_blaster_params.h"
|
||||
|
@ -85,4 +85,4 @@ public:
|
|||
void updt_params(params_ref const & p);
|
||||
};
|
||||
|
||||
#endif /* _PREPROCESSOR_PARAMS_H_ */
|
||||
#endif /* PREPROCESSOR_PARAMS_H_ */
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _QI_PARAMS_H_
|
||||
#define _QI_PARAMS_H_
|
||||
#ifndef QI_PARAMS_H_
|
||||
#define QI_PARAMS_H_
|
||||
|
||||
#include"util.h"
|
||||
#include"params.h"
|
||||
|
@ -107,5 +107,5 @@ struct qi_params {
|
|||
void updt_params(params_ref const & p);
|
||||
};
|
||||
|
||||
#endif /* _QI_PARAMS_H_ */
|
||||
#endif /* QI_PARAMS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _SMT_PARAMS_H_
|
||||
#define _SMT_PARAMS_H_
|
||||
#ifndef SMT_PARAMS_H_
|
||||
#define SMT_PARAMS_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"dyn_ack_params.h"
|
||||
|
@ -287,5 +287,5 @@ struct smt_params : public preprocessor_params,
|
|||
void updt_params(context_params const & p);
|
||||
};
|
||||
|
||||
#endif /* _SMT_PARAMS_H_ */
|
||||
#endif /* SMT_PARAMS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _THEORY_ARITH_PARAMS_H_
|
||||
#define _THEORY_ARITH_PARAMS_H_
|
||||
#ifndef THEORY_ARITH_PARAMS_H_
|
||||
#define THEORY_ARITH_PARAMS_H_
|
||||
|
||||
#include<limits.h>
|
||||
#include"params.h"
|
||||
|
@ -158,5 +158,5 @@ struct theory_arith_params {
|
|||
void updt_params(params_ref const & p);
|
||||
};
|
||||
|
||||
#endif /* _THEORY_ARITH_PARAMS_H_ */
|
||||
#endif /* THEORY_ARITH_PARAMS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _THEORY_ARRAY_PARAMS_H_
|
||||
#define _THEORY_ARRAY_PARAMS_H_
|
||||
#ifndef THEORY_ARRAY_PARAMS_H_
|
||||
#define THEORY_ARRAY_PARAMS_H_
|
||||
|
||||
#include"array_simplifier_params.h"
|
||||
|
||||
|
@ -74,5 +74,5 @@ struct theory_array_params : public array_simplifier_params {
|
|||
};
|
||||
|
||||
|
||||
#endif /* _THEORY_ARRAY_PARAMS_H_ */
|
||||
#endif /* THEORY_ARRAY_PARAMS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _THEORY_BV_PARAMS_H_
|
||||
#define _THEORY_BV_PARAMS_H_
|
||||
#ifndef THEORY_BV_PARAMS_H_
|
||||
#define THEORY_BV_PARAMS_H_
|
||||
|
||||
#include"params.h"
|
||||
|
||||
|
@ -46,5 +46,5 @@ struct theory_bv_params {
|
|||
void updt_params(params_ref const & p);
|
||||
};
|
||||
|
||||
#endif /* _THEORY_BV_PARAMS_H_ */
|
||||
#endif /* THEORY_BV_PARAMS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _THEORY_DATATYPE_PARAMS_H_
|
||||
#define _THEORY_DATATYPE_PARAMS_H_
|
||||
#ifndef THEORY_DATATYPE_PARAMS_H_
|
||||
#define THEORY_DATATYPE_PARAMS_H_
|
||||
|
||||
struct theory_datatype_params {
|
||||
unsigned m_dt_lazy_splits;
|
||||
|
@ -34,5 +34,5 @@ struct theory_datatype_params {
|
|||
};
|
||||
|
||||
|
||||
#endif /* _THEORY_DATATYPE_PARAMS_H_ */
|
||||
#endif /* THEORY_DATATYPE_PARAMS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _THEORY_PB_PARAMS_H_
|
||||
#define _THEORY_PB_PARAMS_H_
|
||||
#ifndef THEORY_PB_PARAMS_H_
|
||||
#define THEORY_PB_PARAMS_H_
|
||||
|
||||
#include"params.h"
|
||||
|
||||
|
@ -37,5 +37,5 @@ struct theory_pb_params {
|
|||
void updt_params(params_ref const & p);
|
||||
};
|
||||
|
||||
#endif /* _THEORY_PB_PARAMS_H_ */
|
||||
#endif /* THEORY_PB_PARAMS_H_ */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue