forked from diffblue/cbmc
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move replace_java_nondet to java_bytecode
- Loading branch information
1 parent
9a8c292
commit 2eb3714
Showing
6 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,12 +9,11 @@ Author: Reuben Thomas, [email protected] | |
/// \file | ||
/// Replace Java Nondet expressions | ||
|
||
#include "goto-programs/replace_java_nondet.h" | ||
#include "goto-programs/goto_convert.h" | ||
#include "goto-programs/goto_model.h" | ||
#include "goto-programs/remove_skip.h" | ||
#include "replace_java_nondet.h" | ||
|
||
#include "util/irep_ids.h" | ||
#include <goto-programs/goto_convert.h> | ||
#include <goto-programs/goto_model.h> | ||
#include <goto-programs/remove_skip.h> | ||
|
||
#include <algorithm> | ||
#include <regex> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ Author: Reuben Thomas, [email protected] | |
/// \file | ||
/// Replace Java Nondet expressions | ||
|
||
#ifndef CPROVER_GOTO_PROGRAMS_REPLACE_JAVA_NONDET_H | ||
#define CPROVER_GOTO_PROGRAMS_REPLACE_JAVA_NONDET_H | ||
#ifndef CPROVER_JAVA_BYTECODE_REPLACE_JAVA_NONDET_H | ||
#define CPROVER_JAVA_BYTECODE_REPLACE_JAVA_NONDET_H | ||
|
||
class goto_modelt; | ||
class goto_functionst; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,6 @@ Author: Daniel Kroening, [email protected] | |
#include <goto-programs/remove_asm.h> | ||
#include <goto-programs/remove_unused_functions.h> | ||
#include <goto-programs/remove_skip.h> | ||
#include <goto-programs/replace_java_nondet.h> | ||
#include <goto-programs/set_properties.h> | ||
#include <goto-programs/show_goto_functions.h> | ||
#include <goto-programs/show_symbol_table.h> | ||
|
@@ -56,6 +55,7 @@ Author: Daniel Kroening, [email protected] | |
#include <java_bytecode/java_enum_static_init_unwind_handler.h> | ||
#include <java_bytecode/remove_instanceof.h> | ||
#include <java_bytecode/remove_exceptions.h> | ||
#include <java_bytecode/replace_java_nondet.h> | ||
|
||
#include <cbmc/version.h> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters