mirror of
https://github.com/Z3Prover/z3
synced 2025-05-02 13:27:01 +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
|
@ -5,13 +5,13 @@ Copyright (c) 2015 Microsoft Corporation
|
|||
--*/
|
||||
|
||||
|
||||
#include"datalog_parser.h"
|
||||
#include"string_buffer.h"
|
||||
#include"str_hashtable.h"
|
||||
#include"ast_pp.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
#include"region.h"
|
||||
#include"warning.h"
|
||||
#include "muz/fp/datalog_parser.h"
|
||||
#include "util/string_buffer.h"
|
||||
#include "util/str_hashtable.h"
|
||||
#include "ast/ast_pp.h"
|
||||
#include "ast/arith_decl_plugin.h"
|
||||
#include "util/region.h"
|
||||
#include "util/warning.h"
|
||||
#include<iostream>
|
||||
#include<sstream>
|
||||
#include<cstdio>
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
#ifndef DATALOG_PARSER_H_
|
||||
#define DATALOG_PARSER_H_
|
||||
|
||||
#include "ast.h"
|
||||
#include "dl_context.h"
|
||||
#include "ast/ast.h"
|
||||
#include "muz/base/dl_context.h"
|
||||
|
||||
namespace datalog {
|
||||
|
||||
|
|
|
@ -15,21 +15,21 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#include"cmd_context.h"
|
||||
#include"dl_cmds.h"
|
||||
#include"dl_external_relation.h"
|
||||
#include"dl_context.h"
|
||||
#include"dl_register_engine.h"
|
||||
#include"dl_decl_plugin.h"
|
||||
#include"dl_instruction.h"
|
||||
#include"dl_compiler.h"
|
||||
#include"dl_rule.h"
|
||||
#include"ast_pp.h"
|
||||
#include"parametric_cmd.h"
|
||||
#include"cancel_eh.h"
|
||||
#include"scoped_ctrl_c.h"
|
||||
#include"scoped_timer.h"
|
||||
#include"trail.h"
|
||||
#include "cmd_context/cmd_context.h"
|
||||
#include "muz/fp/dl_cmds.h"
|
||||
#include "muz/rel/dl_external_relation.h"
|
||||
#include "muz/base/dl_context.h"
|
||||
#include "muz/fp/dl_register_engine.h"
|
||||
#include "ast/dl_decl_plugin.h"
|
||||
#include "muz/rel/dl_instruction.h"
|
||||
#include "muz/rel/dl_compiler.h"
|
||||
#include "muz/base/dl_rule.h"
|
||||
#include "ast/ast_pp.h"
|
||||
#include "cmd_context/parametric_cmd.h"
|
||||
#include "util/cancel_eh.h"
|
||||
#include "util/scoped_ctrl_c.h"
|
||||
#include "util/scoped_timer.h"
|
||||
#include "util/trail.h"
|
||||
#include"fixedpoint_params.hpp"
|
||||
#include<iomanip>
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ Notes:
|
|||
#ifndef DL_CMDS_H_
|
||||
#define DL_CMDS_H_
|
||||
|
||||
#include "ast.h"
|
||||
#include "ast/ast.h"
|
||||
|
||||
class cmd_context;
|
||||
|
||||
|
|
|
@ -16,14 +16,14 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include "dl_register_engine.h"
|
||||
#include "dl_bmc_engine.h"
|
||||
#include "clp_context.h"
|
||||
#include "tab_context.h"
|
||||
#include "rel_context.h"
|
||||
#include "pdr_dl_interface.h"
|
||||
#include "ddnf.h"
|
||||
#include "duality_dl_interface.h"
|
||||
#include "muz/fp/dl_register_engine.h"
|
||||
#include "muz/bmc/dl_bmc_engine.h"
|
||||
#include "muz/clp/clp_context.h"
|
||||
#include "muz/tab/tab_context.h"
|
||||
#include "muz/rel/rel_context.h"
|
||||
#include "muz/pdr/pdr_dl_interface.h"
|
||||
#include "muz/ddnf/ddnf.h"
|
||||
#include "muz/duality/duality_dl_interface.h"
|
||||
|
||||
namespace datalog {
|
||||
register_engine::register_engine(): m_ctx(0) {}
|
||||
|
|
|
@ -19,7 +19,7 @@ Revision History:
|
|||
#ifndef DL_REGISTER_ENGINE_H_
|
||||
#define DL_REGISTER_ENGINE_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
#include "muz/base/dl_context.h"
|
||||
|
||||
namespace datalog {
|
||||
|
||||
|
|
|
@ -16,20 +16,20 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"tactical.h"
|
||||
#include"model_converter.h"
|
||||
#include"proof_converter.h"
|
||||
#include"horn_tactic.h"
|
||||
#include"dl_context.h"
|
||||
#include"dl_register_engine.h"
|
||||
#include"expr_replacer.h"
|
||||
#include"dl_rule_transformer.h"
|
||||
#include"dl_mk_slice.h"
|
||||
#include"filter_model_converter.h"
|
||||
#include"dl_transforms.h"
|
||||
#include "tactic/tactical.h"
|
||||
#include "tactic/model_converter.h"
|
||||
#include "tactic/proof_converter.h"
|
||||
#include "muz/fp/horn_tactic.h"
|
||||
#include "muz/base/dl_context.h"
|
||||
#include "muz/fp/dl_register_engine.h"
|
||||
#include "ast/rewriter/expr_replacer.h"
|
||||
#include "muz/base/dl_rule_transformer.h"
|
||||
#include "muz/transforms/dl_mk_slice.h"
|
||||
#include "tactic/filter_model_converter.h"
|
||||
#include "muz/transforms/dl_transforms.h"
|
||||
#include"fixedpoint_params.hpp"
|
||||
#include"ast_util.h"
|
||||
#include"var_subst.h"
|
||||
#include "ast/ast_util.h"
|
||||
#include "ast/rewriter/var_subst.h"
|
||||
|
||||
class horn_tactic : public tactic {
|
||||
struct imp {
|
||||
|
|
|
@ -19,7 +19,7 @@ Revision History:
|
|||
#ifndef HORN_TACTIC_H_
|
||||
#define HORN_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