mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +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 _EUCLIDEAN_SOLVER_H_
|
||||
#define _EUCLIDEAN_SOLVER_H_
|
||||
#ifndef EUCLIDEAN_SOLVER_H_
|
||||
#define EUCLIDEAN_SOLVER_H_
|
||||
|
||||
#include"mpq.h"
|
||||
#include"vector.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _GROBNER_H_
|
||||
#define _GROBNER_H_
|
||||
#ifndef GROBNER_H_
|
||||
#define GROBNER_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
|
@ -277,5 +277,5 @@ public:
|
|||
void display(std::ostream & out) const;
|
||||
};
|
||||
|
||||
#endif /* _GROBNER_H_ */
|
||||
#endif /* GROBNER_H_ */
|
||||
|
||||
|
|
|
@ -34,8 +34,8 @@ Notes:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _HEAP_TRIE_H_
|
||||
#define _HEAP_TRIE_H_
|
||||
#ifndef HEAP_TRIE_H_
|
||||
#define HEAP_TRIE_H_
|
||||
|
||||
#include "map.h"
|
||||
#include "vector.h"
|
||||
|
|
|
@ -25,8 +25,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _HILBERT_BASIS_H_
|
||||
#define _HILBERT_BASIS_H_
|
||||
#ifndef HILBERT_BASIS_H_
|
||||
#define HILBERT_BASIS_H_
|
||||
|
||||
#include "rational.h"
|
||||
#include "lbool.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _INTERVAL_H_
|
||||
#define _INTERVAL_H_
|
||||
#ifndef INTERVAL_H_
|
||||
#define INTERVAL_H_
|
||||
|
||||
#include"mpq.h"
|
||||
#include"ext_numeral.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _INTERVAL_DEF_H_
|
||||
#define _INTERVAL_DEF_H_
|
||||
#ifndef INTERVAL_DEF_H_
|
||||
#define INTERVAL_DEF_H_
|
||||
|
||||
#include"interval.h"
|
||||
#include"debug.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _ALGEBRAIC_NUMBERS_H_
|
||||
#define _ALGEBRAIC_NUMBERS_H_
|
||||
#ifndef ALGEBRAIC_NUMBERS_H_
|
||||
#define ALGEBRAIC_NUMBERS_H_
|
||||
|
||||
#include"rational.h"
|
||||
#include"mpq.h"
|
||||
|
|
|
@ -19,8 +19,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _LINEAR_EQ_SOLVER_H_
|
||||
#define _LINEAR_EQ_SOLVER_H_
|
||||
#ifndef LINEAR_EQ_SOLVER_H_
|
||||
#define LINEAR_EQ_SOLVER_H_
|
||||
|
||||
template<typename numeral_manager>
|
||||
class linear_eq_solver {
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _POLYNOMIAL_H_
|
||||
#define _POLYNOMIAL_H_
|
||||
#ifndef POLYNOMIAL_H_
|
||||
#define POLYNOMIAL_H_
|
||||
|
||||
#include"mpz.h"
|
||||
#include"rational.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _POLYNOMIAL_CACHE_H_
|
||||
#define _POLYNOMIAL_CACHE_H_
|
||||
#ifndef POLYNOMIAL_CACHE_H_
|
||||
#define POLYNOMIAL_CACHE_H_
|
||||
|
||||
#include"polynomial.h"
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _POLYNOMIAL_PRIMES_H_
|
||||
#define _POLYNOMIAL_PRIMES_H_
|
||||
#ifndef POLYNOMIAL_PRIMES_H_
|
||||
#define POLYNOMIAL_PRIMES_H_
|
||||
|
||||
namespace polynomial {
|
||||
#define NUM_SMALL_PRIMES 11
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _POLYNOMIAL_VAR2VALUE_H_
|
||||
#define _POLYNOMIAL_VAR2VALUE_H_
|
||||
#ifndef POLYNOMIAL_VAR2VALUE_H_
|
||||
#define POLYNOMIAL_VAR2VALUE_H_
|
||||
|
||||
#include"polynomial.h"
|
||||
#include"scoped_numeral_vector.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _RPOLYNOMIAL_H_
|
||||
#define _RPOLYNOMIAL_H_
|
||||
#ifndef RPOLYNOMIAL_H_
|
||||
#define RPOLYNOMIAL_H_
|
||||
|
||||
#include"mpz.h"
|
||||
#include"rational.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _SEXPR2UPOLYNOMIAL_H_
|
||||
#define _SEXPR2UPOLYNOMIAL_H_
|
||||
#ifndef SEXPR2UPOLYNOMIAL_H_
|
||||
#define SEXPR2UPOLYNOMIAL_H_
|
||||
|
||||
#include"upolynomial.h"
|
||||
#include"cmd_context_types.h"
|
||||
|
|
|
@ -21,8 +21,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _UPOLYNOMIAL_H_
|
||||
#define _UPOLYNOMIAL_H_
|
||||
#ifndef UPOLYNOMIAL_H_
|
||||
#define UPOLYNOMIAL_H_
|
||||
|
||||
#include"mpzzp.h"
|
||||
#include"rational.h"
|
||||
|
|
|
@ -22,8 +22,8 @@ Notes:
|
|||
[3] Henri Cohen. A Course in Computational Algebraic Number Theory. Springer Verlag, 1993.
|
||||
|
||||
--*/
|
||||
#ifndef _UPOLYNOMIAL_FACTORIZATION_H_
|
||||
#define _UPOLYNOMIAL_FACTORIZATION_H_
|
||||
#ifndef UPOLYNOMIAL_FACTORIZATION_H_
|
||||
#define UPOLYNOMIAL_FACTORIZATION_H_
|
||||
|
||||
#include"upolynomial.h"
|
||||
#include"polynomial.h"
|
||||
|
|
|
@ -23,8 +23,8 @@ Notes:
|
|||
[3] Henri Cohen. A Course in Computational Algebraic Number Theory. Springer Verlag, 1993.
|
||||
|
||||
--*/
|
||||
#ifndef _UPOLYNOMIAL_FACTORIZATION_INT_H_
|
||||
#define _UPOLYNOMIAL_FACTORIZATION_INT_H_
|
||||
#ifndef UPOLYNOMIAL_FACTORIZATION_INT_H_
|
||||
#define UPOLYNOMIAL_FACTORIZATION_INT_H_
|
||||
|
||||
#include"upolynomial_factorization.h"
|
||||
|
||||
|
|
|
@ -28,8 +28,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _MPZ_MATRIX_H_
|
||||
#define _MPZ_MATRIX_H_
|
||||
#ifndef MPZ_MATRIX_H_
|
||||
#define MPZ_MATRIX_H_
|
||||
|
||||
#include"mpz.h"
|
||||
|
||||
|
|
|
@ -19,8 +19,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _REALCLOSURE_H_
|
||||
#define _REALCLOSURE_H_
|
||||
#ifndef REALCLOSURE_H_
|
||||
#define REALCLOSURE_H_
|
||||
|
||||
#include"mpq.h"
|
||||
#include"params.h"
|
||||
|
|
|
@ -25,8 +25,8 @@ Notes:
|
|||
A naive approach is to run an algorithm on max flow in order to get a spanning tree.
|
||||
|
||||
--*/
|
||||
#ifndef _NETWORK_FLOW_H_
|
||||
#define _NETWORK_FLOW_H_
|
||||
#ifndef NETWORK_FLOW_H_
|
||||
#define NETWORK_FLOW_H_
|
||||
|
||||
#include"inf_rational.h"
|
||||
#include"diff_logic.h"
|
||||
|
|
|
@ -17,8 +17,8 @@ Notes:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _NETWORK_FLOW_DEF_H_
|
||||
#define _NETWORK_FLOW_DEF_H_
|
||||
#ifndef NETWORK_FLOW_DEF_H_
|
||||
#define NETWORK_FLOW_DEF_H_
|
||||
|
||||
#include"network_flow.h"
|
||||
#include"uint_set.h"
|
||||
|
|
|
@ -29,8 +29,8 @@ Notes:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _SIMPLEX_H_
|
||||
#define _SIMPLEX_H_
|
||||
#ifndef SIMPLEX_H_
|
||||
#define SIMPLEX_H_
|
||||
|
||||
#include "sparse_matrix.h"
|
||||
#include "mpq_inf.h"
|
||||
|
|
|
@ -19,8 +19,8 @@ Notes:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _SIMPLEX_DEF_H_
|
||||
#define _SIMPLEX_DEF_H_
|
||||
#ifndef SIMPLEX_DEF_H_
|
||||
#define SIMPLEX_DEF_H_
|
||||
|
||||
|
||||
namespace simplex {
|
||||
|
|
|
@ -16,8 +16,8 @@ Notes:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _SPARSE_MATRIX_H_
|
||||
#define _SPARSE_MATRIX_H_
|
||||
#ifndef SPARSE_MATRIX_H_
|
||||
#define SPARSE_MATRIX_H_
|
||||
|
||||
#include "mpq_inf.h"
|
||||
#include "statistics.h"
|
||||
|
|
|
@ -18,8 +18,8 @@ Notes:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _SPARSE_MATRIX_DEF_H_
|
||||
#define _SPARSE_MATRIX_DEF_H_
|
||||
#ifndef SPARSE_MATRIX_DEF_H_
|
||||
#define SPARSE_MATRIX_DEF_H_
|
||||
|
||||
#include "sparse_matrix.h"
|
||||
#include "uint_set.h"
|
||||
|
|
|
@ -22,8 +22,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef __SUBPAVING_H_
|
||||
#define __SUBPAVING_H_
|
||||
#ifndef SUBPAVING_H_
|
||||
#define SUBPAVING_H_
|
||||
|
||||
#include"mpq.h"
|
||||
#include"subpaving_types.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef __SUBPAVING_HWF_H_
|
||||
#define __SUBPAVING_HWF_H_
|
||||
#ifndef SUBPAVING_HWF_H_
|
||||
#define SUBPAVING_HWF_H_
|
||||
|
||||
#include"subpaving_t.h"
|
||||
#include"f2n.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef __SUBPAVING_MPF_H_
|
||||
#define __SUBPAVING_MPF_H_
|
||||
#ifndef SUBPAVING_MPF_H_
|
||||
#define SUBPAVING_MPF_H_
|
||||
|
||||
#include"subpaving_t.h"
|
||||
#include"mpf.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef __SUBPAVING_MPFF_H_
|
||||
#define __SUBPAVING_MPFF_H_
|
||||
#ifndef SUBPAVING_MPFF_H_
|
||||
#define SUBPAVING_MPFF_H_
|
||||
|
||||
#include"subpaving_t.h"
|
||||
#include"mpff.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef __SUBPAVING_MPFX_H_
|
||||
#define __SUBPAVING_MPFX_H_
|
||||
#ifndef SUBPAVING_MPFX_H_
|
||||
#define SUBPAVING_MPFX_H_
|
||||
|
||||
#include"subpaving_t.h"
|
||||
#include"mpfx.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef __SUBPAVING_MPQ_H_
|
||||
#define __SUBPAVING_MPQ_H_
|
||||
#ifndef SUBPAVING_MPQ_H_
|
||||
#define SUBPAVING_MPQ_H_
|
||||
|
||||
#include"subpaving_t.h"
|
||||
#include"mpq.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef __SUBPAVING_T_H_
|
||||
#define __SUBPAVING_T_H_
|
||||
#ifndef SUBPAVING_T_H_
|
||||
#define SUBPAVING_T_H_
|
||||
|
||||
#include<iostream>
|
||||
#include"tptr.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef __SUBPAVING_TYPES_H_
|
||||
#define __SUBPAVING_TYPES_H_
|
||||
#ifndef SUBPAVING_TYPES_H_
|
||||
#define SUBPAVING_TYPES_H_
|
||||
|
||||
namespace subpaving {
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _EXPR2SUBPAVING_H_
|
||||
#define _EXPR2SUBPAVING_H_
|
||||
#ifndef EXPR2SUBPAVING_H_
|
||||
#define EXPR2SUBPAVING_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"subpaving.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef __SUBPAVING_TACTIC_H_
|
||||
#define __SUBPAVING_TACTIC_H_
|
||||
#ifndef SUBPAVING_TACTIC_H_
|
||||
#define SUBPAVING_TACTIC_H_
|
||||
|
||||
#include"params.h"
|
||||
class ast_manager;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue