mirror of
https://github.com/Z3Prover/z3
synced 2025-10-05 15:33:59 +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,19 +16,19 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"smt2parser.h"
|
||||
#include"smt2scanner.h"
|
||||
#include"stack.h"
|
||||
#include"datatype_decl_plugin.h"
|
||||
#include"bv_decl_plugin.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
#include"seq_decl_plugin.h"
|
||||
#include"ast_pp.h"
|
||||
#include"well_sorted.h"
|
||||
#include"pattern_validation.h"
|
||||
#include"rewriter.h"
|
||||
#include"has_free_vars.h"
|
||||
#include"ast_smt2_pp.h"
|
||||
#include "parsers/smt2/smt2parser.h"
|
||||
#include "parsers/smt2/smt2scanner.h"
|
||||
#include "util/stack.h"
|
||||
#include "ast/datatype_decl_plugin.h"
|
||||
#include "ast/bv_decl_plugin.h"
|
||||
#include "ast/arith_decl_plugin.h"
|
||||
#include "ast/seq_decl_plugin.h"
|
||||
#include "ast/ast_pp.h"
|
||||
#include "ast/well_sorted.h"
|
||||
#include "parsers/util/pattern_validation.h"
|
||||
#include "ast/rewriter/rewriter.h"
|
||||
#include "ast/has_free_vars.h"
|
||||
#include "ast/ast_smt2_pp.h"
|
||||
#include"parser_params.hpp"
|
||||
#include<sstream>
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ Revision History:
|
|||
#ifndef SMT2_PARSER_H_
|
||||
#define SMT2_PARSER_H_
|
||||
|
||||
#include"cmd_context.h"
|
||||
#include "cmd_context/cmd_context.h"
|
||||
|
||||
bool parse_smt2_commands(cmd_context & ctx, std::istream & is, bool interactive = false, params_ref const & p = params_ref(), char const * filename = 0);
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"smt2scanner.h"
|
||||
#include "parsers/smt2/smt2scanner.h"
|
||||
#include"parser_params.hpp"
|
||||
|
||||
namespace smt2 {
|
||||
|
|
|
@ -20,10 +20,10 @@ Revision History:
|
|||
#define SMT2SCANNER_H_
|
||||
|
||||
#include<iostream>
|
||||
#include"symbol.h"
|
||||
#include"vector.h"
|
||||
#include"rational.h"
|
||||
#include"cmd_context.h"
|
||||
#include "util/symbol.h"
|
||||
#include "util/vector.h"
|
||||
#include "util/rational.h"
|
||||
#include "cmd_context/cmd_context.h"
|
||||
|
||||
namespace smt2 {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue