mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 19:05: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
|
@ -16,7 +16,7 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"cost_parser.h"
|
||||
#include "parsers/util/cost_parser.h"
|
||||
|
||||
cost_parser::cost_parser(ast_manager & m):
|
||||
simple_parser(m),
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
#ifndef COST_PARSER_H_
|
||||
#define COST_PARSER_H_
|
||||
|
||||
#include"simple_parser.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
#include "parsers/util/simple_parser.h"
|
||||
#include "ast/arith_decl_plugin.h"
|
||||
|
||||
class cost_parser : public simple_parser {
|
||||
arith_util m_util;
|
||||
|
|
|
@ -17,11 +17,11 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#include"pattern_validation.h"
|
||||
#include"for_each_expr.h"
|
||||
#include"warning.h"
|
||||
#include "parsers/util/pattern_validation.h"
|
||||
#include "ast/for_each_expr.h"
|
||||
#include "util/warning.h"
|
||||
|
||||
#include"ast_pp.h"
|
||||
#include "ast/ast_pp.h"
|
||||
|
||||
struct pattern_validation_functor {
|
||||
uint_set & m_found_vars;
|
||||
|
|
|
@ -19,9 +19,9 @@ Revision History:
|
|||
#ifndef PATTERN_VALIDATION_H_
|
||||
#define PATTERN_VALIDATION_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"uint_set.h"
|
||||
#include"vector.h"
|
||||
#include "ast/ast.h"
|
||||
#include "util/uint_set.h"
|
||||
#include "util/vector.h"
|
||||
|
||||
class pattern_validator {
|
||||
family_id m_bfid;
|
||||
|
|
|
@ -16,7 +16,7 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"scanner.h"
|
||||
#include "parsers/util/scanner.h"
|
||||
|
||||
inline char scanner::read_char() {
|
||||
if (m_is_interactive) {
|
||||
|
|
|
@ -19,7 +19,7 @@ Revision History:
|
|||
#ifndef SCANNER_H_
|
||||
#define SCANNER_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include "ast/ast.h"
|
||||
|
||||
class scanner {
|
||||
public:
|
||||
|
|
|
@ -18,9 +18,9 @@ Revision History:
|
|||
--*/
|
||||
#include<fstream>
|
||||
#include<sstream>
|
||||
#include"simple_parser.h"
|
||||
#include"warning.h"
|
||||
#include"scanner.h"
|
||||
#include "parsers/util/simple_parser.h"
|
||||
#include "util/warning.h"
|
||||
#include "parsers/util/scanner.h"
|
||||
|
||||
simple_parser::simple_parser(ast_manager & m):
|
||||
m_manager(m),
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
#ifndef SIMPLE_PARSER_H_
|
||||
#define SIMPLE_PARSER_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"map.h"
|
||||
#include "ast/ast.h"
|
||||
#include "util/map.h"
|
||||
|
||||
class scanner;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue