3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +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:
Nikolaj Bjorner 2015-07-08 23:18:40 -07:00
parent f145ceecb4
commit 4bc044c982
676 changed files with 1679 additions and 1619 deletions

View file

@ -17,8 +17,8 @@ Author:
Notes:
--*/
#ifndef _ACT_CACHE_H_
#define _ACT_CACHE_H_
#ifndef ACT_CACHE_H_
#define ACT_CACHE_H_
#include"ast.h"
#include"obj_hashtable.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _ARITH_DECL_PLUGIN_H_
#define _ARITH_DECL_PLUGIN_H_
#ifndef ARITH_DECL_PLUGIN_H_
#define ARITH_DECL_PLUGIN_H_
#include"ast.h"
class sexpr;
@ -399,5 +399,5 @@ public:
}
};
#endif /* _ARITH_DECL_PLUGIN_H_ */
#endif /* ARITH_DECL_PLUGIN_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _ARRAY_DECL_PLUGIN_H_
#define _ARRAY_DECL_PLUGIN_H_
#ifndef ARRAY_DECL_PLUGIN_H_
#define ARRAY_DECL_PLUGIN_H_
#include"ast.h"
@ -187,5 +187,5 @@ public:
};
#endif /* _ARRAY_DECL_PLUGIN_H_ */
#endif /* ARRAY_DECL_PLUGIN_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _AST_H_
#define _AST_H_
#ifndef AST_H_
#define AST_H_
#include"vector.h"
#include"hashtable.h"
@ -2450,6 +2450,6 @@ public:
void operator()(AST * n) { m_manager.inc_ref(n); }
};
#endif /* _AST_H_ */
#endif /* AST_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _AST_LL_PP_H_
#define _AST_LL_PP_H_
#ifndef AST_LL_PP_H_
#define AST_LL_PP_H_
#include"ast.h"
#include<iostream>
@ -53,5 +53,5 @@ inline std::ostream & operator<<(std::ostream & out, mk_bounded_pp const & p) {
}
#endif /* _AST_LL_PP_H_ */
#endif /* AST_LL_PP_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _AST_LT_H_
#define _AST_LT_H_
#ifndef AST_LT_H_
#define AST_LT_H_
class ast;

View file

@ -18,8 +18,8 @@ Revision History:
2012-11-17 - ast_smt2_pp is the official pretty printer in Z3
--*/
#ifndef _AST_PP_H_
#define _AST_PP_H_
#ifndef AST_PP_H_
#define AST_PP_H_
#include"ast_smt2_pp.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _AST_PRINTER_H_
#define _AST_PRINTER_H_
#ifndef AST_PRINTER_H_
#define AST_PRINTER_H_
#include"ast.h"
#include"ast_smt2_pp.h"

View file

@ -19,8 +19,8 @@ Revision History:
--*/
#ifndef _AST_SMT2_PP_H_
#define _AST_SMT2_PP_H_
#ifndef AST_SMT2_PP_H_
#define AST_SMT2_PP_H_
#include"format.h"
#include"params.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _AST_SMT_PP_H_
#define _AST_SMT_PP_H_
#ifndef AST_SMT_PP_H_
#define AST_SMT_PP_H_
#include"ast.h"
#include<string>

View file

@ -19,8 +19,8 @@ Revision History:
nbjorner 2014-9-28
--*/
#ifndef _AST_TRAIL_H_
#define _AST_TRAIL_H_
#ifndef AST_TRAIL_H_
#define AST_TRAIL_H_
#include"ast.h"
#include"trail.h"
@ -72,5 +72,5 @@ public:
};
#endif /* _AST_TRAIL_H_ */
#endif /* AST_TRAIL_H_ */

View file

@ -18,8 +18,8 @@ Revision History:
2011-05-26: New local translation class.
--*/
#ifndef _AST_TRANSLATION_H_
#define _AST_TRANSLATION_H_
#ifndef AST_TRANSLATION_H_
#define AST_TRANSLATION_H_
#include"ast.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _AST_UTIL_H_
#define _AST_UTIL_H_
#ifndef AST_UTIL_H_
#define AST_UTIL_H_
#include"ast.h"
#include"obj_hashtable.h"
@ -139,5 +139,5 @@ void flatten_or(expr_ref_vector& result);
void flatten_or(expr* fml, expr_ref_vector& result);
#endif /* _AST_UTIL_H_ */
#endif /* AST_UTIL_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _BV_DECL_PLUGIN_H_
#define _BV_DECL_PLUGIN_H_
#ifndef BV_DECL_PLUGIN_H_
#define BV_DECL_PLUGIN_H_
#include"ast.h"
@ -389,5 +389,5 @@ public:
app * mk_bv(unsigned n, expr* const* es) { return m_manager.mk_app(get_fid(), OP_MKBV, n, es); }
};
#endif /* _BV_DECL_PLUGIN_H_ */
#endif /* BV_DECL_PLUGIN_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _DATATYPE_DECL_PLUGIN_H_
#define _DATATYPE_DECL_PLUGIN_H_
#ifndef DATATYPE_DECL_PLUGIN_H_
#define DATATYPE_DECL_PLUGIN_H_
#include"ast.h"
#include"tptr.h"
@ -214,5 +214,5 @@ public:
};
#endif /* _DATATYPE_DECL_PLUGIN_H_ */
#endif /* DATATYPE_DECL_PLUGIN_H_ */

View file

@ -17,8 +17,8 @@ Author:
Revision History:
--*/
#ifndef _SMT_DECL_COLLECTOR_H_
#define _SMT_DECL_COLLECTOR_H_
#ifndef SMT_DECL_COLLECTOR_H_
#define SMT_DECL_COLLECTOR_H_
#include"ast.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _DL_DECL_PLUGIN_H_
#define _DL_DECL_PLUGIN_H_
#ifndef DL_DECL_PLUGIN_H_
#define DL_DECL_PLUGIN_H_
#include"ast.h"
#include "arith_decl_plugin.h"
@ -273,5 +273,5 @@ namespace datalog {
};
};
#endif /* _DL_DECL_PLUGIN_H_ */
#endif /* DL_DECL_PLUGIN_H_ */

View file

@ -17,8 +17,8 @@ Author:
Notes:
--*/
#ifndef _EXPR2POLYNOMIAL_H_
#define _EXPR2POLYNOMIAL_H_
#ifndef EXPR2POLYNOMIAL_H_
#define EXPR2POLYNOMIAL_H_
#include"ast.h"
#include"polynomial.h"

View file

@ -20,8 +20,8 @@ Author:
Notes:
--*/
#ifndef _EXPR2VAR_H_
#define _EXPR2VAR_H_
#ifndef EXPR2VAR_H_
#define EXPR2VAR_H_
#include"ast.h"
#include"obj_hashtable.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _EXPR_ABSTRACT_H_
#define _EXPR_ABSTRACT_H_
#ifndef EXPR_ABSTRACT_H_
#define EXPR_ABSTRACT_H_
#include"ast.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _EXPR_DELTA_PAIR_H_
#define _EXPR_DELTA_PAIR_H_
#ifndef EXPR_DELTA_PAIR_H_
#define EXPR_DELTA_PAIR_H_
/**
\brief Auxiliary structure used to cache the intermediate results of the variable substitution procedure.
@ -32,5 +32,5 @@ struct expr_delta_pair {
bool operator==(const expr_delta_pair & e) const { return m_node == e.m_node && m_delta == e.m_delta; }
};
#endif /* _EXPR_DELTA_PAIR_H_ */
#endif /* EXPR_DELTA_PAIR_H_ */

View file

@ -19,8 +19,8 @@ Revision History:
--*/
#ifndef __EXPR_FUNCTORS_H__
#define __EXPR_FUNCTORS_H__
#ifndef EXPR_FUNCTORS_H_
#define EXPR_FUNCTORS_H_
#include "ast.h"
#include "expr_map.h"

View file

@ -18,8 +18,8 @@ Author:
Notes:
--*/
#ifndef _EXPR_MAP_H_
#define _EXPR_MAP_H_
#ifndef EXPR_MAP_H_
#define EXPR_MAP_H_
#include"ast.h"
#include"obj_hashtable.h"

View file

@ -19,8 +19,8 @@ Author:
Revision History:
--*/
#ifndef _EXPR_STAT_H_
#define _EXPR_STAT_H_
#ifndef EXPR_STAT_H_
#define EXPR_STAT_H_
class expr;
@ -47,4 +47,4 @@ void get_expr_stat(expr * n, expr_stat & r);
*/
unsigned get_symbol_count(expr * n);
#endif /* _EXPR_STAT_H_ */
#endif /* EXPR_STAT_H_ */

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _EXPR_SUBSTITUTION_H_
#define _EXPR_SUBSTITUTION_H_
#ifndef EXPR_SUBSTITUTION_H_
#define EXPR_SUBSTITUTION_H_
#include"ast.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _FOR_EACH_AST_H_
#define _FOR_EACH_AST_H_
#ifndef FOR_EACH_AST_H_
#define FOR_EACH_AST_H_
#include"ast.h"
#include"trace.h"
@ -270,5 +270,5 @@ private:
}
};
#endif /* _FOR_EACH_AST_H_ */
#endif /* FOR_EACH_AST_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _FOR_EACH_EXPR_H_
#define _FOR_EACH_EXPR_H_
#ifndef FOR_EACH_EXPR_H_
#define FOR_EACH_EXPR_H_
#include"ast.h"
#include"trace.h"
@ -153,5 +153,5 @@ unsigned get_num_exprs(expr * n, expr_fast_mark1 & visited);
bool has_skolem_functions(expr * n);
#endif /* _FOR_EACH_EXPR_H_ */
#endif /* FOR_EACH_EXPR_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _FORMAT_H_
#define _FORMAT_H_
#ifndef FORMAT_H_
#define FORMAT_H_
#include"ast.h"
@ -193,5 +193,5 @@ namespace format_ns {
};
#endif /* _FORMAT_H_ */
#endif /* FORMAT_H_ */

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _FPA2BV_CONVERTER_
#define _FPA2BV_CONVERTER_
#ifndef FPA2BV_CONVERTER_H_
#define FPA2BV_CONVERTER_H_
#include"ast.h"
#include"obj_hashtable.h"

View file

@ -17,8 +17,8 @@ Notes:
--*/
#ifndef _FPA2BV_REWRITER_H_
#define _FPA2BV_REWRITER_H_
#ifndef FPA2BV_REWRITER_H_
#define FPA2BV_REWRITER_H_
#include"cooperate.h"
#include"rewriter_def.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _fpa_decl_plugin_H_
#define _fpa_decl_plugin_H_
#ifndef fpa_decl_plugin_H_
#define fpa_decl_plugin_H_
#include"ast.h"
#include"id_gen.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _FUNC_DECL_DEPENDENCIES_H_
#define _FUNC_DECL_DEPENDENCIES_H_
#ifndef FUNC_DECL_DEPENDENCIES_H_
#define FUNC_DECL_DEPENDENCIES_H_
#include"ast.h"
#include"obj_hashtable.h"

View file

@ -16,12 +16,12 @@ Author:
Revision History:
--*/
#ifndef _HAS_FREE_VARS_H_
#define _HAS_FREE_VARS_H_
#ifndef HAS_FREE_VARS_H_
#define HAS_FREE_VARS_H_
class expr;
bool has_free_vars(expr * n);
#endif /* _HAS_FREE_VARS_H_ */
#endif /* HAS_FREE_VARS_H_ */

View file

@ -18,8 +18,8 @@ Author:
Notes:
--*/
#ifndef _MACRO_SUBSTITUTION_H_
#define _MACRO_SUBSTITUTION_H_
#ifndef MACRO_SUBSTITUTION_H_
#define MACRO_SUBSTITUTION_H_
#include"ast.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _MACRO_FINDER_H_
#define _MACRO_FINDER_H_
#ifndef MACRO_FINDER_H_
#define MACRO_FINDER_H_
#include"macro_manager.h"
#include"arith_simplifier_plugin.h"
@ -51,5 +51,5 @@ public:
void operator()(unsigned n, expr * const * exprs, proof * const * prs, expr_ref_vector & new_exprs, proof_ref_vector & new_prs);
};
#endif /* _MACRO_FINDER_H_ */
#endif /* MACRO_FINDER_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _MACRO_MANAGER_H_
#define _MACRO_MANAGER_H_
#ifndef MACRO_MANAGER_H_
#define MACRO_MANAGER_H_
#include"ast_util.h"
#include"obj_hashtable.h"
@ -95,5 +95,5 @@ public:
};
#endif /* _MACRO_MANAGER_H_ */
#endif /* MACRO_MANAGER_H_ */

View file

@ -17,8 +17,8 @@ Author:
Revision History:
--*/
#ifndef _MACRO_UTIL_H_
#define _MACRO_UTIL_H_
#ifndef MACRO_UTIL_H_
#define MACRO_UTIL_H_
#include"ast.h"
#include"obj_hashtable.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _QUASI_MACROS_H_
#define _QUASI_MACROS_H_
#ifndef QUASI_MACROS_H_
#define QUASI_MACROS_H_
#include<sstream>
#include"macro_manager.h"

View file

@ -17,8 +17,8 @@ Author:
Revision History:
--*/
#ifndef _DEFINED_NAMES_H_
#define _DEFINED_NAMES_H_
#ifndef DEFINED_NAMES_H_
#define DEFINED_NAMES_H_
#include"ast.h"
@ -85,5 +85,5 @@ public:
func_decl * get_name_decl(unsigned i) const;
};
#endif /* _DEFINED_NAMES_H_ */
#endif /* DEFINED_NAMES_H_ */

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _NAME_EXPRS_H_
#define _NAME_EXPRS_H_
#ifndef NAME_EXPRS_H_
#define NAME_EXPRS_H_
#include"ast.h"
#include"defined_names.h"

View file

@ -17,8 +17,8 @@ Notes:
Major revision on 2011-10-06
--*/
#ifndef _NNF_H_
#define _NNF_H_
#ifndef NNF_H_
#define NNF_H_
#include"ast.h"
#include"params.h"
@ -52,4 +52,4 @@ public:
void reset_cache();
};
#endif /* _NNF_H_ */
#endif /* NNF_H_ */

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _PULL_QUANT_H_
#define _PULL_QUANT_H_
#ifndef PULL_QUANT_H_
#define PULL_QUANT_H_
#include"ast.h"
@ -56,4 +56,4 @@ public:
void reset();
};
#endif /* _PULL_QUANT_H_ */
#endif /* PULL_QUANT_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _NUM_OCCURS_H_
#define _NUM_OCCURS_H_
#ifndef NUM_OCCURS_H_
#define NUM_OCCURS_H_
#include"ast.h"
#include"obj_hashtable.h"
@ -51,5 +51,5 @@ public:
}
};
#endif /* _NUM_OCCURS_H_ */
#endif /* NUM_OCCURS_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _OCCURS_H_
#define _OCCURS_H_
#ifndef OCCURS_H_
#define OCCURS_H_
class expr;
class func_decl;
@ -32,5 +32,5 @@ bool occurs(expr * n1, expr * n2);
*/
bool occurs(func_decl * d, expr * n);
#endif /* _OCCURS_H_ */
#endif /* OCCURS_H_ */

View file

@ -17,8 +17,8 @@ Author:
Notes:
--*/
#ifndef _EXPR_PATTERN_MATCH_H_
#define _EXPR_PATTERN_MATCH_H_
#ifndef EXPR_PATTERN_MATCH_H_
#define EXPR_PATTERN_MATCH_H_
#include"ast.h"
#include"map.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _PATTERN_INFERENCE_H_
#define _PATTERN_INFERENCE_H_
#ifndef PATTERN_INFERENCE_H_
#define PATTERN_INFERENCE_H_
#include"ast.h"
#include"simplifier.h"
@ -244,5 +244,5 @@ public:
bool is_forbidden(app * n) const;
};
#endif /* _PATTERN_INFERENCE_H_ */
#endif /* PATTERN_INFERENCE_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _PATTERN_INFERENCE_PARAMS_H_
#define _PATTERN_INFERENCE_PARAMS_H_
#ifndef PATTERN_INFERENCE_PARAMS_H_
#define PATTERN_INFERENCE_PARAMS_H_
#include"params.h"
@ -48,5 +48,5 @@ struct pattern_inference_params {
void updt_params(params_ref const & _p);
};
#endif /* _PATTERN_INFERENCE_PARAMS_H_ */
#endif /* PATTERN_INFERENCE_PARAMS_H_ */

View file

@ -24,8 +24,8 @@ hence:
--*/
#ifndef _PB_DECL_PLUGIN_H_
#define _PB_DECL_PLUGIN_H_
#ifndef PB_DECL_PLUGIN_H_
#define PB_DECL_PLUGIN_H_
#include"ast.h"
@ -119,5 +119,5 @@ private:
#endif /* _PB_DECL_PLUGIN_H_ */
#endif /* PB_DECL_PLUGIN_H_ */

View file

@ -16,13 +16,13 @@ Author:
Revision History:
--*/
#ifndef _PP_H_
#define _PP_H_
#ifndef PP_H_
#define PP_H_
#include"format.h"
#include"params.h"
void pp(std::ostream & out, format_ns::format * f, ast_manager & m, params_ref const & p = params_ref());
#endif /* _PP_H_ */
#endif /* PP_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _PROOF_CHECKER_H_
#define _PROOF_CHECKER_H_
#ifndef PROOF_CHECKER_H_
#define PROOF_CHECKER_H_
#include "ast.h"
#include "map.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _RECURSE_EXPR_H_
#define _RECURSE_EXPR_H_
#ifndef RECURSE_EXPR_H_
#define RECURSE_EXPR_H_
#include"ast.h"
#include"obj_hashtable.h"
@ -44,4 +44,4 @@ public:
void finalize() { m_cache.finalize(); m_todo.finalize(); }
};
#endif /* _RECURSE_EXPR_H_ */
#endif /* RECURSE_EXPR_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _RECURSE_EXPR_DEF_H_
#define _RECURSE_EXPR_DEF_H_
#ifndef RECURSE_EXPR_DEF_H_
#define RECURSE_EXPR_DEF_H_
#include"recurse_expr.h"
@ -106,4 +106,4 @@ T recurse_expr<T, Visitor, IgnorePatterns, CallDestructors>::operator()(expr * r
return get_cached(r);
}
#endif /* _RECURSE_EXPR_DEF_H_ */
#endif /* RECURSE_EXPR_DEF_H_ */

View file

@ -17,8 +17,8 @@ Author:
Revision History:
--*/
#ifndef _REG_DECL_PLUGINS_H_
#define _REG_DECL_PLUGINS_H_
#ifndef REG_DECL_PLUGINS_H_
#define REG_DECL_PLUGINS_H_
class ast_manager;

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _ARITH_REWRITER_H_
#define _ARITH_REWRITER_H_
#ifndef ARITH_REWRITER_H_
#define ARITH_REWRITER_H_
#include"poly_rewriter.h"
#include"arith_decl_plugin.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _ARRAY_REWRITER_H_
#define _ARRAY_REWRITER_H_
#ifndef ARRAY_REWRITER_H_
#define ARRAY_REWRITER_H_
#include"array_decl_plugin.h"
#include"rewriter_types.h"

View file

@ -21,8 +21,8 @@ Revision History:
--*/
#ifndef _AST_COUNTER_H_
#define _AST_COUNTER_H_
#ifndef AST_COUNTER_H_
#define AST_COUNTER_H_
#include "ast.h"
#include "map.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _BIT_BLASTER_H_
#define _BIT_BLASTER_H_
#ifndef BIT_BLASTER_H_
#define BIT_BLASTER_H_
#include"basic_simplifier_plugin.h"
#include"bit_blaster_params.h"
@ -61,5 +61,5 @@ public:
bit_blaster_params const & get_params() const { return this->m_params; }
};
#endif /* _BIT_BLASTER_H_ */
#endif /* BIT_BLASTER_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _BIT_BLASTER_PARAMS_H_
#define _BIT_BLASTER_PARAMS_H_
#ifndef BIT_BLASTER_PARAMS_H_
#define BIT_BLASTER_PARAMS_H_
struct bit_blaster_params {
bool m_bb_ext_gates;
@ -34,5 +34,5 @@ struct bit_blaster_params {
#endif
};
#endif /* _BIT_BLASTER_PARAMS_H_ */
#endif /* BIT_BLASTER_PARAMS_H_ */

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _BIT_BLASTER_REWRITER_H_
#define _BIT_BLASTER_REWRITER_H_
#ifndef BIT_BLASTER_REWRITER_H_
#define BIT_BLASTER_REWRITER_H_
#include"ast.h"
#include"obj_hashtable.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _BIT_BLASTER_TPL_H_
#define _BIT_BLASTER_TPL_H_
#ifndef BIT_BLASTER_TPL_H_
#define BIT_BLASTER_TPL_H_
#include"rational.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _BOOL_REWRITER_H_
#define _BOOL_REWRITER_H_
#ifndef BOOL_REWRITER_H_
#define BOOL_REWRITER_H_
#include"ast.h"
#include"rewriter.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _BV_REWRITER_H_
#define _BV_REWRITER_H_
#ifndef BV_REWRITER_H_
#define BV_REWRITER_H_
#include"poly_rewriter.h"
#include"bv_decl_plugin.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _DATATYPE_REWRITER_H_
#define _DATATYPE_REWRITER_H_
#ifndef DATATYPE_REWRITER_H_
#define DATATYPE_REWRITER_H_
#include"datatype_decl_plugin.h"
#include"rewriter_types.h"

View file

@ -18,8 +18,8 @@ Revision History:
Christoph Wintersteiger, 2010-03-30: Added Destr. Multi-Equality Resolution
--*/
#ifndef _DER_H_
#define _DER_H_
#ifndef DER_H_
#define DER_H_
#include"ast.h"
#include"var_subst.h"
@ -183,5 +183,5 @@ public:
typedef der_rewriter der_star;
#endif /* _DER_H_ */
#endif /* DER_H_ */

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _DL_REWRITER_H_
#define _DL_REWRITER_H_
#ifndef DL_REWRITER_H_
#define DL_REWRITER_H_
#include"dl_decl_plugin.h"
#include"rewriter_types.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _EXPR_REPLACER_H_
#define _EXPR_REPLACER_H_
#ifndef EXPR_REPLACER_H_
#define EXPR_REPLACER_H_
#include"ast.h"
#include"expr_substitution.h"

View file

@ -19,8 +19,8 @@ Revision History:
--*/
#ifndef __EXPR_SAFE_REPLACE_H__
#define __EXPR_SAFE_REPLACE_H__
#ifndef EXPR_SAFE_REPLACE_H_
#define EXPR_SAFE_REPLACE_H_
#include "ast.h"
@ -49,4 +49,4 @@ public:
bool empty() const { return m_subst.empty(); }
};
#endif /* __EXPR_SAFE_REPLACE_H__ */
#endif /* EXPR_SAFE_REPLACE_H_ */

View file

@ -17,8 +17,8 @@ Author:
Notes:
--*/
#ifndef _FACTOR_REWRITER_H_
#define _FACTOR_REWRITER_H_
#ifndef FACTOR_REWRITER_H_
#define FACTOR_REWRITER_H_
#include"ast.h"
#include"rewriter.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _FLOAT_REWRITER_H_
#define _FLOAT_REWRITER_H_
#ifndef FLOAT_REWRITER_H_
#define FLOAT_REWRITER_H_
#include"ast.h"
#include"rewriter.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _MK_SIMPLIFIED_APP_H_
#define _MK_SIMPLIFIED_APP_H_
#ifndef MK_SIMPLIFIED_APP_H_
#define MK_SIMPLIFIED_APP_H_
#include"ast.h"
#include"params.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _PB_REWRITER_H_
#define _PB_REWRITER_H_
#ifndef PB_REWRITER_H_
#define PB_REWRITER_H_
#include"pb_decl_plugin.h"
#include"rewriter_types.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _PB_REWRITER_DEF_H_
#define _PB_REWRITER_DEF_H_
#ifndef PB_REWRITER_DEF_H_
#define PB_REWRITER_DEF_H_
#include"pb_rewriter.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _POLY_REWRITER_H_
#define _POLY_REWRITER_H_
#ifndef POLY_REWRITER_H_
#define POLY_REWRITER_H_
#include"ast.h"
#include"obj_hashtable.h"

View file

@ -19,8 +19,8 @@ Revision History:
--*/
#ifndef __QUANTIFIER_HOISTER_H_
#define __QUANTIFIER_HOISTER_H_
#ifndef QUANTIFIER_HOISTER_H_
#define QUANTIFIER_HOISTER_H_
#include "ast.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _REWRITER_H_
#define _REWRITER_H_
#ifndef REWRITER_H_
#define REWRITER_H_
#include"ast.h"
#include"rewriter_types.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _REWRITER_TYPES_H_
#define _REWRITER_TYPES_H_
#ifndef REWRITER_TYPES_H_
#define REWRITER_TYPES_H_
#include"z3_exception.h"
#include"common_msgs.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _TH_REWRITER_H_
#define _TH_REWRITER_H_
#ifndef TH_REWRITER_H_
#define TH_REWRITER_H_
#include"ast.h"
#include"rewriter_types.h"

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _VAR_SUBST_H_
#define _VAR_SUBST_H_
#ifndef VAR_SUBST_H_
#define VAR_SUBST_H_
#include"rewriter.h"
#include"used_vars.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SCOPED_PROOF__H_
#define _SCOPED_PROOF__H_
#ifndef SCOPED_PROOF__H_
#define SCOPED_PROOF__H_
#include "ast.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SEQ_DECL_PLUGIN_H_
#define _SEQ_DECL_PLUGIN_H_
#ifndef SEQ_DECL_PLUGIN_H_
#define SEQ_DECL_PLUGIN_H_
#include "ast.h"
@ -119,5 +119,5 @@ public:
};
#endif /* _SEQ_DECL_PLUGIN_H_ */
#endif /* SEQ_DECL_PLUGIN_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _SHARED_OCCS_H_
#define _SHARED_OCCS_H_
#ifndef SHARED_OCCS_H_
#define SHARED_OCCS_H_
#include"ast.h"
#include"obj_hashtable.h"

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _ARITH_SIMPLIFIER_PARAMS_H_
#define _ARITH_SIMPLIFIER_PARAMS_H_
#ifndef ARITH_SIMPLIFIER_PARAMS_H_
#define ARITH_SIMPLIFIER_PARAMS_H_
#include"params.h"
@ -32,5 +32,5 @@ struct arith_simplifier_params {
void updt_params(params_ref const & _p);
};
#endif /* _ARITH_SIMPLIFIER_PARAMS_H_ */
#endif /* ARITH_SIMPLIFIER_PARAMS_H_ */

View file

@ -14,8 +14,8 @@ Author:
Leonardo (leonardo) 2008-01-08
--*/
#ifndef _ARITH_SIMPLIFIER_PLUGIN_H_
#define _ARITH_SIMPLIFIER_PLUGIN_H_
#ifndef ARITH_SIMPLIFIER_PLUGIN_H_
#define ARITH_SIMPLIFIER_PLUGIN_H_
#include"basic_simplifier_plugin.h"
#include"poly_simplifier_plugin.h"
@ -93,4 +93,4 @@ public:
};
#endif /* _ARITH_SIMPLIFIER_PLUGIN_H_ */
#endif /* ARITH_SIMPLIFIER_PLUGIN_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _ARRAY_SIMPLIFIER_PARAMS_H_
#define _ARRAY_SIMPLIFIER_PARAMS_H_
#ifndef ARRAY_SIMPLIFIER_PARAMS_H_
#define ARRAY_SIMPLIFIER_PARAMS_H_
#include"params.h"
@ -32,5 +32,5 @@ struct array_simplifier_params {
void updt_params(params_ref const & _p);
};
#endif /* _ARITH_SIMPLIFIER_PARAMS_H_ */
#endif /* ARITH_SIMPLIFIER_PARAMS_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _ARRAY_SIMPLIFIER_PLUGIN_H_
#define _ARRAY_SIMPLIFIER_PLUGIN_H_
#ifndef ARRAY_SIMPLIFIER_PLUGIN_H_
#define ARRAY_SIMPLIFIER_PLUGIN_H_
#include"ast.h"
#include"map.h"
@ -150,5 +150,5 @@ private:
};
#endif /* _ARRAY_SIMPLIFIER_PLUGIN_H_ */
#endif /* ARRAY_SIMPLIFIER_PLUGIN_H_ */

View file

@ -16,8 +16,8 @@ Author:
Notes:
--*/
#ifndef _BASE_SIMPLIFIER_H_
#define _BASE_SIMPLIFIER_H_
#ifndef BASE_SIMPLIFIER_H_
#define BASE_SIMPLIFIER_H_
#include"expr_map.h"
#include"ast_pp.h"
@ -73,4 +73,4 @@ public:
}
};
#endif /* _BASE_SIMPLIFIER_H_ */
#endif /* BASE_SIMPLIFIER_H_ */

View file

@ -14,8 +14,8 @@ Author:
Leonardo (leonardo) 2008-01-07
--*/
#ifndef _BASIC_SIMPLIFIER_PLUGIN_H_
#define _BASIC_SIMPLIFIER_PLUGIN_H_
#ifndef BASIC_SIMPLIFIER_PLUGIN_H_
#define BASIC_SIMPLIFIER_PLUGIN_H_
#include"simplifier_plugin.h"
@ -75,4 +75,4 @@ struct expr_lt_proc {
}
};
#endif /* _BASIC_SIMPLIFIER_PLUGIN_H_ */
#endif /* BASIC_SIMPLIFIER_PLUGIN_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _BIT2INT_H_
#define _BIT2INT_H_
#ifndef BIT2INT_H_
#define BIT2INT_H_
#include"bv_decl_plugin.h"
#include"arith_decl_plugin.h"
@ -92,5 +92,5 @@ public:
void operator()(expr * m, expr_ref & result, proof_ref& p);
};
#endif /* _BIT2INT_H_ */
#endif /* BIT2INT_H_ */

View file

@ -17,8 +17,8 @@ Author:
Revision History:
--*/
#ifndef _BV_ELIM_H_
#define _BV_ELIM_H_
#ifndef BV_ELIM_H_
#define BV_ELIM_H_
#include "ast.h"
#include "simplifier.h"
@ -41,5 +41,5 @@ public:
virtual ~bv_elim_star() {}
};
#endif /* _BV_ELIM_H_ */
#endif /* BV_ELIM_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _BV_SIMPLIFIER_PARAMS_H_
#define _BV_SIMPLIFIER_PARAMS_H_
#ifndef BV_SIMPLIFIER_PARAMS_H_
#define BV_SIMPLIFIER_PARAMS_H_
#include"params.h"
@ -32,5 +32,5 @@ struct bv_simplifier_params {
void updt_params(params_ref const & _p);
};
#endif /* _BV_SIMPLIFIER_PARAMS_H_ */
#endif /* BV_SIMPLIFIER_PARAMS_H_ */

View file

@ -14,8 +14,8 @@ Author:
Leonardo (leonardo) 2008-01-08
--*/
#ifndef _BV_SIMPLIFIER_PLUGIN_H_
#define _BV_SIMPLIFIER_PLUGIN_H_
#ifndef BV_SIMPLIFIER_PLUGIN_H_
#define BV_SIMPLIFIER_PLUGIN_H_
#include"basic_simplifier_plugin.h"
#include"poly_simplifier_plugin.h"
@ -184,4 +184,4 @@ public:
};
#endif /* _BV_SIMPLIFIER_PLUGIN_H_ */
#endif /* BV_SIMPLIFIER_PLUGIN_H_ */

View file

@ -14,8 +14,8 @@ Author:
nbjorner 2008-11-6
--*/
#ifndef _DATATYPE_SIMPLIFIER_PLUGIN_H_
#define _DATATYPE_SIMPLIFIER_PLUGIN_H_
#ifndef DATATYPE_SIMPLIFIER_PLUGIN_H_
#define DATATYPE_SIMPLIFIER_PLUGIN_H_
#include"basic_simplifier_plugin.h"
#include"datatype_decl_plugin.h"
@ -39,4 +39,4 @@ public:
};
#endif /* _DATATYPE_SIMPLIFIER_PLUGIN_H_ */
#endif /* DATATYPE_SIMPLIFIER_PLUGIN_H_ */

View file

@ -18,8 +18,8 @@ Revision History:
Christoph Wintersteiger 2010-04-06: Added implementation
--*/
#ifndef _DISTRIBUTE_FORALL_H_
#define _DISTRIBUTE_FORALL_H_
#ifndef DISTRIBUTE_FORALL_H_
#define DISTRIBUTE_FORALL_H_
#include"ast.h"
#include"basic_simplifier_plugin.h"
@ -79,4 +79,4 @@ protected:
void flush_cache() { m_cache.cleanup(); }
};
#endif /* _DISTRIBUTE_FORALL_H_ */
#endif /* DISTRIBUTE_FORALL_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _ELIM_BOUNDS_H_
#define _ELIM_BOUNDS_H_
#ifndef ELIM_BOUNDS_H_
#define ELIM_BOUNDS_H_
#include"ast.h"
#include"arith_decl_plugin.h"
@ -65,5 +65,5 @@ public:
virtual ~elim_bounds_star() {}
};
#endif /* _ELIM_BOUNDS_H_ */
#endif /* ELIM_BOUNDS_H_ */

View file

@ -14,8 +14,8 @@ Author:
Christoph (cwinter) 2015-01-14
--*/
#ifndef _FPA_SIMPLIFIER_PLUGIN_H_
#define _FPA_SIMPLIFIER_PLUGIN_H_
#ifndef FPA_SIMPLIFIER_PLUGIN_H_
#define FPA_SIMPLIFIER_PLUGIN_H_
#include"basic_simplifier_plugin.h"
#include"fpa_decl_plugin.h"
@ -36,4 +36,4 @@ public:
};
#endif /* _FPA_SIMPLIFIER_PLUGIN_H_ */
#endif /* FPA_SIMPLIFIER_PLUGIN_H_ */

View file

@ -16,12 +16,12 @@ Author:
Revision History:
--*/
#ifndef _INJ_AXIOM_H_
#define _INJ_AXIOM_H_
#ifndef INJ_AXIOM_H_
#define INJ_AXIOM_H_
#include"ast.h"
bool simplify_inj_axiom(ast_manager & m, quantifier * q, expr_ref & result);
#endif /* _INJ_AXIOM_H_ */
#endif /* INJ_AXIOM_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _MAXIMISE_AC_SHARING_H_
#define _MAXIMISE_AC_SHARING_H_
#ifndef MAXIMISE_AC_SHARING_H_
#define MAXIMISE_AC_SHARING_H_
#include"simplifier.h"
#include"hashtable.h"
@ -120,5 +120,5 @@ public:
maximise_bv_sharing(ast_manager & m);
};
#endif /* _MAXIMISE_AC_SHARING_H_ */
#endif /* MAXIMISE_AC_SHARING_H_ */

View file

@ -14,8 +14,8 @@ Author:
Leonardo (leonardo) 2008-01-08
--*/
#ifndef _POLY_SIMPLIFIER_PLUGIN_H_
#define _POLY_SIMPLIFIER_PLUGIN_H_
#ifndef POLY_SIMPLIFIER_PLUGIN_H_
#define POLY_SIMPLIFIER_PLUGIN_H_
#include "simplifier_plugin.h"
@ -152,4 +152,4 @@ public:
#endif
};
#endif /* _POLY_SIMPLIFIER_PLUGIN_H_ */
#endif /* POLY_SIMPLIFIER_PLUGIN_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _PULL_ITE_TREE_H_
#define _PULL_ITE_TREE_H_
#ifndef PULL_ITE_TREE_H_
#define PULL_ITE_TREE_H_
#include"ast.h"
#include"simplifier.h"
@ -97,5 +97,5 @@ public:
virtual bool is_target(app * n) const;
};
#endif /* _PULL_ITE_TREE_H_ */
#endif /* PULL_ITE_TREE_H_ */

View file

@ -16,8 +16,8 @@ Author:
Revision History:
--*/
#ifndef _PUSH_APP_ITE_H_
#define _PUSH_APP_ITE_H_
#ifndef PUSH_APP_ITE_H_
#define PUSH_APP_ITE_H_
#include"ast.h"
#include"simplifier.h"
@ -59,5 +59,5 @@ public:
virtual ~ng_push_app_ite() {}
};
#endif /* _PUSH_APP_ITE_H_ */
#endif /* PUSH_APP_ITE_H_ */

Some files were not shown because too many files have changed in this diff Show more