Skip to content

Move {json,xml}_expr.{h,cpp} to goto-programs [blocks: #3734, #3736] #3711

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/analyses/custom_bitvector_analysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Author: Daniel Kroening, [email protected]
#include <util/expr_util.h>
#include <util/simplify_expr.h>
#include <util/string_constant.h>
#include <util/xml_expr.h>
#include <util/xml_irep.h>

#include <langapi/language_util.h>

Expand Down
3 changes: 1 addition & 2 deletions src/analyses/dependence_graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ Date: August 2013
#include <cassert>

#include <util/container_utils.h>
#include <util/json.h>
#include <util/json_expr.h>
#include <util/json_irep.h>

#include "goto_rw.h"

Expand Down
9 changes: 5 additions & 4 deletions src/cbmc/bmc_cover.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,19 @@ Author: Daniel Kroening, [email protected]

#include <goto-checker/bmc_util.h>

#include <util/xml.h>
#include <util/xml_expr.h>
#include <util/json.h>
#include <util/json_stream.h>
#include <util/json_expr.h>
#include <util/xml_irep.h>

#include <solvers/prop/cover_goals.h>
#include <solvers/prop/literal_expr.h>

#include <goto-symex/build_goto_trace.h>
#include <goto-programs/xml_goto_trace.h>

#include <goto-programs/json_expr.h>
#include <goto-programs/json_goto_trace.h>
#include <goto-programs/xml_expr.h>
#include <goto-programs/xml_goto_trace.h>

#include <langapi/language_util.h>

Expand Down
8 changes: 4 additions & 4 deletions src/cbmc/fault_localization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ Author: Peter Schrammel

#include <chrono>

#include <util/threeval.h>
#include <util/arith_tools.h>
#include <util/symbol.h>
#include <util/std_expr.h>
#include <util/message.h>
#include <util/xml_expr.h>
#include <util/std_expr.h>
#include <util/symbol.h>
#include <util/threeval.h>
#include <util/xml_irep.h>

#include <solvers/prop/minimize.h>
#include <solvers/prop/literal_expr.h>
Expand Down
2 changes: 1 addition & 1 deletion src/goto-analyzer/static_verifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Author: Martin Brain, [email protected]

#include "static_verifier.h"

#include <util/json_expr.h>
#include <util/json_irep.h>
#include <util/message.h>
#include <util/namespace.h>
#include <util/options.h>
Expand Down
2 changes: 1 addition & 1 deletion src/goto-analyzer/unreachable_instructions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Date: April 2016
#include "unreachable_instructions.h"

#include <util/file_util.h>
#include <util/json_expr.h>
#include <util/json_irep.h>
#include <util/options.h>
#include <util/xml.h>

Expand Down
2 changes: 1 addition & 1 deletion src/goto-diff/goto_diff_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Author: Peter Schrammel

#include "goto_diff.h"

#include <util/json_expr.h>
#include <util/json_irep.h>
#include <util/options.h>

#include <goto-programs/goto_model.h>
Expand Down
1 change: 0 additions & 1 deletion src/goto-instrument/unwind.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ Author: Daniel Kroening, [email protected]
#include "unwindset.h"

#include <util/json.h>
#include <util/json_expr.h>
#include <goto-programs/goto_model.h>

class goto_modelt;
Expand Down
2 changes: 2 additions & 0 deletions src/goto-programs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ SRC = adjust_float_expressions.cpp \
instrument_preconditions.cpp \
interpreter.cpp \
interpreter_evaluate.cpp \
json_expr.cpp \
json_goto_trace.cpp \
lazy_goto_model.cpp \
link_goto_model.cpp \
Expand Down Expand Up @@ -67,6 +68,7 @@ SRC = adjust_float_expressions.cpp \
vcd_goto_trace.cpp \
wp.cpp \
write_goto_binary.cpp \
xml_expr.cpp \
xml_goto_trace.cpp \
# Empty last line

Expand Down
1 change: 0 additions & 1 deletion src/goto-programs/goto_inline_class.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ Author: Daniel Kroening, [email protected]

#include <util/message.h>
#include <util/json.h>
#include <util/json_expr.h>

#include "goto_functions.h"

Expand Down
Loading