mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 10:55: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 _SMTLIB_H_
|
||||
#define _SMTLIB_H_
|
||||
#ifndef SMTLIB_H_
|
||||
#define SMTLIB_H_
|
||||
|
||||
#include "ast.h"
|
||||
#include "symbol_table.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _SMTLIB_SOLVER_H_
|
||||
#define _SMTLIB_SOLVER_H_
|
||||
#ifndef SMTLIB_SOLVER_H_
|
||||
#define SMTLIB_SOLVER_H_
|
||||
|
||||
#include"smtparser.h"
|
||||
#include"context_params.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _SMT_PARSER_H_
|
||||
#define _SMT_PARSER_H_
|
||||
#ifndef SMT_PARSER_H_
|
||||
#define SMT_PARSER_H_
|
||||
|
||||
#include<iostream>
|
||||
#include"ast.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _SMT2_PARSER_H_
|
||||
#define _SMT2_PARSER_H_
|
||||
#ifndef SMT2_PARSER_H_
|
||||
#define SMT2_PARSER_H_
|
||||
|
||||
#include"cmd_context.h"
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _SMT2SCANNER_H_
|
||||
#define _SMT2SCANNER_H_
|
||||
#ifndef SMT2SCANNER_H_
|
||||
#define SMT2SCANNER_H_
|
||||
|
||||
#include<iostream>
|
||||
#include"symbol.h"
|
||||
|
@ -105,5 +105,5 @@ namespace smt2 {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _SCANNER_H_ */
|
||||
#endif /* SCANNER_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _COST_PARSER_H_
|
||||
#define _COST_PARSER_H_
|
||||
#ifndef COST_PARSER_H_
|
||||
#define COST_PARSER_H_
|
||||
|
||||
#include"simple_parser.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
|
@ -35,5 +35,5 @@ public:
|
|||
void reset_vars();
|
||||
};
|
||||
|
||||
#endif /* _COST_PARSER_H_ */
|
||||
#endif /* COST_PARSER_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _PATTERN_VALIDATION_H_
|
||||
#define _PATTERN_VALIDATION_H_
|
||||
#ifndef PATTERN_VALIDATION_H_
|
||||
#define PATTERN_VALIDATION_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"uint_set.h"
|
||||
|
@ -39,5 +39,5 @@ public:
|
|||
bool operator()(unsigned num_new_bindings, expr * n) { return operator()(UINT_MAX, num_new_bindings, n); }
|
||||
};
|
||||
|
||||
#endif /* _PATTERN_VALIDATION_H_ */
|
||||
#endif /* PATTERN_VALIDATION_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _SCANNER_H_
|
||||
#define _SCANNER_H_
|
||||
#ifndef SCANNER_H_
|
||||
#define SCANNER_H_
|
||||
|
||||
#include"ast.h"
|
||||
|
||||
|
@ -88,5 +88,5 @@ private:
|
|||
bool state_ok();
|
||||
};
|
||||
|
||||
#endif /* _SCANNER_H_ */
|
||||
#endif /* SCANNER_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _SIMPLE_PARSER_H_
|
||||
#define _SIMPLE_PARSER_H_
|
||||
#ifndef SIMPLE_PARSER_H_
|
||||
#define SIMPLE_PARSER_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"map.h"
|
||||
|
@ -60,5 +60,5 @@ public:
|
|||
virtual expr * parse_float(rational const & r) { throw parser_error(); }
|
||||
};
|
||||
|
||||
#endif /* _SIMPLE_PARSER_H_ */
|
||||
#endif /* SIMPLE_PARSER_H_ */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue