mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 10:55:50 +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
|
@ -17,13 +17,13 @@ Notes:
|
|||
|
||||
--*/
|
||||
|
||||
#include"ctx_solver_simplify_tactic.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
#include"smt_params.h"
|
||||
#include"smt_kernel.h"
|
||||
#include"ast_pp.h"
|
||||
#include"mk_simplified_app.h"
|
||||
#include"ast_util.h"
|
||||
#include "smt/tactic/ctx_solver_simplify_tactic.h"
|
||||
#include "ast/arith_decl_plugin.h"
|
||||
#include "smt/params/smt_params.h"
|
||||
#include "smt/smt_kernel.h"
|
||||
#include "ast/ast_pp.h"
|
||||
#include "ast/rewriter/mk_simplified_app.h"
|
||||
#include "ast/ast_util.h"
|
||||
|
||||
class ctx_solver_simplify_tactic : public tactic {
|
||||
ast_manager& m;
|
||||
|
|
|
@ -19,7 +19,7 @@ Notes:
|
|||
#ifndef CTX_SOLVER_SIMPLIFY_TACTIC_H_
|
||||
#define CTX_SOLVER_SIMPLIFY_TACTIC_H_
|
||||
|
||||
#include"tactical.h"
|
||||
#include "tactic/tactical.h"
|
||||
|
||||
tactic * mk_ctx_solver_simplify_tactic(ast_manager & m, params_ref const & p = params_ref());
|
||||
/*
|
||||
|
|
|
@ -16,19 +16,19 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#include"tactic.h"
|
||||
#include"tactical.h"
|
||||
#include"smt_kernel.h"
|
||||
#include"smt_params.h"
|
||||
#include "tactic/tactic.h"
|
||||
#include "tactic/tactical.h"
|
||||
#include "smt/smt_kernel.h"
|
||||
#include "smt/params/smt_params.h"
|
||||
#include"smt_params_helper.hpp"
|
||||
#include"lp_params.hpp"
|
||||
#include"rewriter_types.h"
|
||||
#include"filter_model_converter.h"
|
||||
#include"ast_util.h"
|
||||
#include"solver2tactic.h"
|
||||
#include"smt_solver.h"
|
||||
#include"solver.h"
|
||||
#include"mus.h"
|
||||
#include "ast/rewriter/rewriter_types.h"
|
||||
#include "tactic/filter_model_converter.h"
|
||||
#include "ast/ast_util.h"
|
||||
#include "solver/solver2tactic.h"
|
||||
#include "smt/smt_solver.h"
|
||||
#include "solver/solver.h"
|
||||
#include "solver/mus.h"
|
||||
|
||||
typedef obj_map<expr, expr *> expr2expr_map;
|
||||
|
||||
|
|
|
@ -19,10 +19,10 @@ Notes:
|
|||
#ifndef SMT_TACTIC_H_
|
||||
#define SMT_TACTIC_H_
|
||||
|
||||
#include"params.h"
|
||||
#include"ast.h"
|
||||
#include"obj_hashtable.h"
|
||||
#include"goal.h"
|
||||
#include "util/params.h"
|
||||
#include "ast/ast.h"
|
||||
#include "util/obj_hashtable.h"
|
||||
#include "tactic/goal.h"
|
||||
|
||||
class tactic;
|
||||
class filter_model_converter;
|
||||
|
|
|
@ -15,8 +15,8 @@ Author:
|
|||
|
||||
--*/
|
||||
|
||||
#include "unit_subsumption_tactic.h"
|
||||
#include "smt_context.h"
|
||||
#include "smt/tactic/unit_subsumption_tactic.h"
|
||||
#include "smt/smt_context.h"
|
||||
|
||||
struct unit_subsumption_tactic : public tactic {
|
||||
ast_manager& m;
|
||||
|
|
|
@ -23,7 +23,7 @@ Notes:
|
|||
--*/
|
||||
#ifndef UNIT_SUBSUMPTION_TACTIC_H_
|
||||
#define UNIT_SUBSUMPTION_TACTIC_H_
|
||||
#include "tactic.h"
|
||||
#include "tactic/tactic.h"
|
||||
|
||||
tactic * mk_unit_subsumption_tactic(ast_manager & m, params_ref const & p = params_ref());
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue