mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
make include paths uniformly use path relative to src. #534
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
71d80ab47f
commit
b19f94ae5b
1370 changed files with 5964 additions and 5901 deletions
|
@ -22,13 +22,13 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"subpaving.h"
|
||||
#include"subpaving_types.h"
|
||||
#include"subpaving_mpq.h"
|
||||
#include"subpaving_mpf.h"
|
||||
#include"subpaving_hwf.h"
|
||||
#include"subpaving_mpff.h"
|
||||
#include"subpaving_mpfx.h"
|
||||
#include "math/subpaving/subpaving.h"
|
||||
#include "math/subpaving/subpaving_types.h"
|
||||
#include "math/subpaving/subpaving_mpq.h"
|
||||
#include "math/subpaving/subpaving_mpf.h"
|
||||
#include "math/subpaving/subpaving_hwf.h"
|
||||
#include "math/subpaving/subpaving_mpff.h"
|
||||
#include "math/subpaving/subpaving_mpfx.h"
|
||||
|
||||
namespace subpaving {
|
||||
|
||||
|
|
|
@ -25,10 +25,10 @@ Revision History:
|
|||
#ifndef SUBPAVING_H_
|
||||
#define SUBPAVING_H_
|
||||
|
||||
#include"mpq.h"
|
||||
#include"subpaving_types.h"
|
||||
#include"params.h"
|
||||
#include"statistics.h"
|
||||
#include "util/mpq.h"
|
||||
#include "math/subpaving/subpaving_types.h"
|
||||
#include "util/params.h"
|
||||
#include "util/statistics.h"
|
||||
|
||||
template<typename fmanager> class f2n;
|
||||
class mpf_manager;
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"subpaving_hwf.h"
|
||||
#include"subpaving_t_def.h"
|
||||
#include "math/subpaving/subpaving_hwf.h"
|
||||
#include "math/subpaving/subpaving_t_def.h"
|
||||
|
||||
// force template instantiation
|
||||
template class subpaving::context_t<subpaving::config_hwf>;
|
||||
|
|
|
@ -19,9 +19,9 @@ Revision History:
|
|||
#ifndef SUBPAVING_HWF_H_
|
||||
#define SUBPAVING_HWF_H_
|
||||
|
||||
#include"subpaving_t.h"
|
||||
#include"f2n.h"
|
||||
#include"hwf.h"
|
||||
#include "math/subpaving/subpaving_t.h"
|
||||
#include "util/f2n.h"
|
||||
#include "util/hwf.h"
|
||||
|
||||
namespace subpaving {
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"subpaving_mpf.h"
|
||||
#include"subpaving_t_def.h"
|
||||
#include "math/subpaving/subpaving_mpf.h"
|
||||
#include "math/subpaving/subpaving_t_def.h"
|
||||
|
||||
// force template instantiation
|
||||
template class subpaving::context_t<subpaving::config_mpf>;
|
||||
|
|
|
@ -19,9 +19,9 @@ Revision History:
|
|||
#ifndef SUBPAVING_MPF_H_
|
||||
#define SUBPAVING_MPF_H_
|
||||
|
||||
#include"subpaving_t.h"
|
||||
#include"mpf.h"
|
||||
#include"f2n.h"
|
||||
#include "math/subpaving/subpaving_t.h"
|
||||
#include "util/mpf.h"
|
||||
#include "util/f2n.h"
|
||||
|
||||
namespace subpaving {
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"subpaving_mpff.h"
|
||||
#include"subpaving_t_def.h"
|
||||
#include "math/subpaving/subpaving_mpff.h"
|
||||
#include "math/subpaving/subpaving_t_def.h"
|
||||
|
||||
// force template instantiation
|
||||
template class subpaving::context_t<subpaving::config_mpff>;
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
#ifndef SUBPAVING_MPFF_H_
|
||||
#define SUBPAVING_MPFF_H_
|
||||
|
||||
#include"subpaving_t.h"
|
||||
#include"mpff.h"
|
||||
#include "math/subpaving/subpaving_t.h"
|
||||
#include "util/mpff.h"
|
||||
|
||||
namespace subpaving {
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"subpaving_mpfx.h"
|
||||
#include"subpaving_t_def.h"
|
||||
#include "math/subpaving/subpaving_mpfx.h"
|
||||
#include "math/subpaving/subpaving_t_def.h"
|
||||
|
||||
// force template instantiation
|
||||
template class subpaving::context_t<subpaving::config_mpfx>;
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
#ifndef SUBPAVING_MPFX_H_
|
||||
#define SUBPAVING_MPFX_H_
|
||||
|
||||
#include"subpaving_t.h"
|
||||
#include"mpfx.h"
|
||||
#include "math/subpaving/subpaving_t.h"
|
||||
#include "util/mpfx.h"
|
||||
|
||||
namespace subpaving {
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"subpaving_mpq.h"
|
||||
#include"subpaving_t_def.h"
|
||||
#include "math/subpaving/subpaving_mpq.h"
|
||||
#include "math/subpaving/subpaving_t_def.h"
|
||||
|
||||
// force template instantiation
|
||||
template class subpaving::context_t<subpaving::config_mpq>;
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
#ifndef SUBPAVING_MPQ_H_
|
||||
#define SUBPAVING_MPQ_H_
|
||||
|
||||
#include"subpaving_t.h"
|
||||
#include"mpq.h"
|
||||
#include "math/subpaving/subpaving_t.h"
|
||||
#include "util/mpq.h"
|
||||
|
||||
namespace subpaving {
|
||||
|
||||
|
|
|
@ -20,18 +20,18 @@ Revision History:
|
|||
#define SUBPAVING_T_H_
|
||||
|
||||
#include<iostream>
|
||||
#include"tptr.h"
|
||||
#include"small_object_allocator.h"
|
||||
#include"chashtable.h"
|
||||
#include"parray.h"
|
||||
#include"interval.h"
|
||||
#include"scoped_numeral_vector.h"
|
||||
#include"subpaving_types.h"
|
||||
#include"params.h"
|
||||
#include"statistics.h"
|
||||
#include"lbool.h"
|
||||
#include"id_gen.h"
|
||||
#include"rlimit.h"
|
||||
#include "util/tptr.h"
|
||||
#include "util/small_object_allocator.h"
|
||||
#include "util/chashtable.h"
|
||||
#include "util/parray.h"
|
||||
#include "math/interval/interval.h"
|
||||
#include "util/scoped_numeral_vector.h"
|
||||
#include "math/subpaving/subpaving_types.h"
|
||||
#include "util/params.h"
|
||||
#include "util/statistics.h"
|
||||
#include "util/lbool.h"
|
||||
#include "util/id_gen.h"
|
||||
#include "util/rlimit.h"
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable : 4200)
|
||||
#pragma warning(disable : 4355)
|
||||
|
|
|
@ -16,12 +16,12 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"subpaving_t.h"
|
||||
#include"interval_def.h"
|
||||
#include"buffer.h"
|
||||
#include"cooperate.h"
|
||||
#include"z3_exception.h"
|
||||
#include"common_msgs.h"
|
||||
#include "math/subpaving/subpaving_t.h"
|
||||
#include "math/interval/interval_def.h"
|
||||
#include "util/buffer.h"
|
||||
#include "util/cooperate.h"
|
||||
#include "util/z3_exception.h"
|
||||
#include "util/common_msgs.h"
|
||||
|
||||
namespace subpaving {
|
||||
|
||||
|
|
|
@ -17,14 +17,14 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#include"expr2subpaving.h"
|
||||
#include"expr2var.h"
|
||||
#include"ref_util.h"
|
||||
#include"z3_exception.h"
|
||||
#include"cooperate.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
#include"scoped_numeral_buffer.h"
|
||||
#include"common_msgs.h"
|
||||
#include "math/subpaving/tactic/expr2subpaving.h"
|
||||
#include "ast/expr2var.h"
|
||||
#include "util/ref_util.h"
|
||||
#include "util/z3_exception.h"
|
||||
#include "util/cooperate.h"
|
||||
#include "ast/arith_decl_plugin.h"
|
||||
#include "util/scoped_numeral_buffer.h"
|
||||
#include "util/common_msgs.h"
|
||||
|
||||
struct expr2subpaving::imp {
|
||||
struct frame {
|
||||
|
|
|
@ -20,8 +20,8 @@ Notes:
|
|||
#ifndef EXPR2SUBPAVING_H_
|
||||
#define EXPR2SUBPAVING_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"subpaving.h"
|
||||
#include "ast/ast.h"
|
||||
#include "math/subpaving/subpaving.h"
|
||||
|
||||
class expr2var;
|
||||
|
||||
|
|
|
@ -16,16 +16,16 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"tactical.h"
|
||||
#include"simplify_tactic.h"
|
||||
#include"expr2subpaving.h"
|
||||
#include"expr2var.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
#include"ast_smt2_pp.h"
|
||||
#include"hwf.h"
|
||||
#include"mpff.h"
|
||||
#include"mpfx.h"
|
||||
#include"f2n.h"
|
||||
#include "tactic/tactical.h"
|
||||
#include "tactic/core/simplify_tactic.h"
|
||||
#include "math/subpaving/tactic/expr2subpaving.h"
|
||||
#include "ast/expr2var.h"
|
||||
#include "ast/arith_decl_plugin.h"
|
||||
#include "ast/ast_smt2_pp.h"
|
||||
#include "util/hwf.h"
|
||||
#include "util/mpff.h"
|
||||
#include "util/mpfx.h"
|
||||
#include "util/f2n.h"
|
||||
|
||||
class subpaving_tactic : public tactic {
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ Revision History:
|
|||
#ifndef SUBPAVING_TACTIC_H_
|
||||
#define SUBPAVING_TACTIC_H_
|
||||
|
||||
#include"params.h"
|
||||
#include "util/params.h"
|
||||
class ast_manager;
|
||||
class tactic;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue