Skip to content

Commit 4104af1

Browse files
committed
Fix makefile
1 parent d157182 commit 4104af1

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

src/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ goto-harness.dir: util.dir goto-programs.dir langapi.dir linking.dir \
7878
goto-instrument.dir
7979

8080
goto-instrument.dir: languages goto-programs.dir pointer-analysis.dir \
81-
goto-symex.dir linking.dir analyses.dir solvers.dir
81+
goto-symex.dir linking.dir analyses.dir solvers.dir \
82+
goto-checker.dir
8283

8384
goto-checker.dir: solvers.dir goto-symex.dir goto-programs.dir
8485

src/goto-instrument/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ OBJ += ../ansi-c/ansi-c$(LIBEXT) \
107107
../cpp/cpp$(LIBEXT) \
108108
../linking/linking$(LIBEXT) \
109109
../big-int/big-int$(LIBEXT) \
110+
../goto-checker/goto-checker$(LIBEXT) \
110111
../goto-programs/goto-programs$(LIBEXT) \
111112
../goto-symex/goto-symex$(LIBEXT) \
112113
../assembler/assembler$(LIBEXT) \

src/goto-instrument/synthesizer/cegis_verifier.cpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,16 @@ Author: Qinheping Hu
2525
#include <analyses/dependence_graph.h>
2626
#include <ansi-c/cprover_library.h>
2727
#include <assembler/remove_asm.h>
28-
#include <contracts/contracts.h>
29-
#include <contracts/utils.h>
3028
#include <cpp/cprover_library.h>
3129
#include <goto-checker/all_properties_verifier_with_trace_storage.h>
3230
#include <goto-checker/multi_path_symex_checker.h>
31+
#include <goto-instrument/contracts/contracts.h>
32+
#include <goto-instrument/contracts/utils.h>
33+
#include <goto-instrument/havoc_utils.h>
3334
#include <langapi/language_util.h>
3435
#include <pointer-analysis/add_failed_symbols.h>
3536
#include <solvers/prop/prop.h>
3637

37-
#include "havoc_utils.h"
38-
3938
static bool contains_symbol_prefix(const exprt &expr, const std::string &prefix)
4039
{
4140
if(

src/goto-instrument/synthesizer/synthesizer_utils.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@ Author: Qinheping Hu
99
#include "synthesizer_utils.h"
1010

1111
#include <analyses/natural_loops.h>
12-
13-
#include "havoc_utils.h"
12+
#include <goto-instrument/contracts/utils.h>
13+
#include <goto-instrument/havoc_utils.h>
1414

1515
#include <sstream>
1616

17-
#include "contracts/utils.h"
18-
1917
goto_programt::const_targett get_loop_end_from_loop_head_and_content(
2018
const goto_programt::const_targett &loop_head,
2119
const loop_templatet<goto_programt::const_targett> &loop)

0 commit comments

Comments
 (0)