mirror of
https://github.com/Z3Prover/z3
synced 2025-08-19 01:32:17 +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
|
@ -24,7 +24,7 @@ Revision History:
|
|||
#ifndef EXPR_OFFSET_H_
|
||||
#define EXPR_OFFSET_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include "ast/ast.h"
|
||||
|
||||
class expr_offset {
|
||||
expr * m_expr;
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
#ifndef EXPR_OFFSET_MAP_H_
|
||||
#define EXPR_OFFSET_MAP_H_
|
||||
|
||||
#include"expr_offset.h"
|
||||
#include"vector.h"
|
||||
#include "ast/substitution/expr_offset.h"
|
||||
#include "util/vector.h"
|
||||
|
||||
/**
|
||||
\brief A mapping from expr_offset to some value of type T.
|
||||
|
|
|
@ -16,7 +16,7 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"matcher.h"
|
||||
#include "ast/substitution/matcher.h"
|
||||
|
||||
bool matcher::operator()(expr * e1, expr * e2, substitution & s) {
|
||||
reset();
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
#ifndef MATCHER_H_
|
||||
#define MATCHER_H_
|
||||
|
||||
#include"substitution.h"
|
||||
#include"hashtable.h"
|
||||
#include "ast/substitution/substitution.h"
|
||||
#include "util/hashtable.h"
|
||||
|
||||
/**
|
||||
\brief Functor for matching expressions.
|
||||
|
|
|
@ -17,10 +17,10 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"substitution.h"
|
||||
#include"ast_pp.h"
|
||||
#include"ast_ll_pp.h"
|
||||
#include"rewriter.h"
|
||||
#include "ast/substitution/substitution.h"
|
||||
#include "ast/ast_pp.h"
|
||||
#include "ast/ast_ll_pp.h"
|
||||
#include "ast/rewriter/rewriter.h"
|
||||
|
||||
substitution::substitution(ast_manager & m):
|
||||
m_manager(m),
|
||||
|
|
|
@ -33,9 +33,9 @@ Revision History:
|
|||
#ifndef SUBSTITUTION_H_
|
||||
#define SUBSTITUTION_H_
|
||||
|
||||
#include"expr_offset_map.h"
|
||||
#include"var_offset_map.h"
|
||||
#include"ast_pp.h"
|
||||
#include "ast/substitution/expr_offset_map.h"
|
||||
#include "ast/substitution/var_offset_map.h"
|
||||
#include "ast/ast_pp.h"
|
||||
|
||||
/**
|
||||
\brief A mapping from (variable,offset) to expr_offset.
|
||||
|
|
|
@ -16,9 +16,9 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"substitution_tree.h"
|
||||
#include"ast_pp.h"
|
||||
#include"ast_smt2_pp.h"
|
||||
#include "ast/substitution/substitution_tree.h"
|
||||
#include "ast/ast_pp.h"
|
||||
#include "ast/ast_smt2_pp.h"
|
||||
|
||||
/**
|
||||
\brief Return the next available register.
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
#ifndef SUBSTITUTION_TREE_H_
|
||||
#define SUBSTITUTION_TREE_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"substitution.h"
|
||||
#include "ast/ast.h"
|
||||
#include "ast/substitution/substitution.h"
|
||||
|
||||
/**
|
||||
\brief Substitution tree visitor.
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"unifier.h"
|
||||
#include"ast_pp.h"
|
||||
#include "ast/substitution/unifier.h"
|
||||
#include "ast/ast_pp.h"
|
||||
|
||||
void unifier::reset(unsigned num_offsets) {
|
||||
m_todo.reset();
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
#ifndef UNIFIER_H_
|
||||
#define UNIFIER_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"substitution.h"
|
||||
#include "ast/ast.h"
|
||||
#include "ast/substitution/substitution.h"
|
||||
|
||||
/**
|
||||
\brief Functor for unifying expressions.
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
#ifndef VAR_OFFSET_MAP_H_
|
||||
#define VAR_OFFSET_MAP_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"vector.h"
|
||||
#include "ast/ast.h"
|
||||
#include "util/vector.h"
|
||||
|
||||
/**
|
||||
\brief A mapping from variable-id + offset to some value of type T.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue