-
Notifications
You must be signed in to change notification settings - Fork 273
Collection of minor fixes and cleanup #1351
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
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
b28e701
fixup! variants of service functions for goto_modelt
tautschnig fd56921
fixup! Fix and run cbmc-cover tests
tautschnig 8054162
fixup! Instrument string-refinement code such that null-pointer check…
tautschnig 7d26139
fixup! Replace BV_ADDR_BITS by config setting
tautschnig d5db0bc
fixup! added a test case for combination use of forall/exists/not.
tautschnig 191f371
fixup! a right place to implement the quantifier handling.
tautschnig 24be89c
fixup! simplify \'not exists\' to the form of \'forall not\'
tautschnig dfd00d3
fixup! Translate exprt to/from miniBDD
tautschnig 66719a9
fixup! goto-instrument --print-path-lengths: statistics about control…
tautschnig f12c790
fixup! fixup! Add --drop-unused-functions option
tautschnig 82ab237
fixup! Split java nondet pass in two
tautschnig 2060b34
fixup! Added __CPROVER_array_replace to complement __CPROVER_array_set
tautschnig 9d5d907
fixup! Allow extra entry-points to be specified for CI lazy loading
tautschnig File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -251,4 +251,3 @@ void replace_java_nondet(goto_modelt &goto_model) | |
{ | ||
replace_java_nondet(goto_model.goto_functions); | ||
} | ||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -17,6 +17,8 @@ Author: Daniel Kroening, [email protected] | |
#include <util/std_types.h> | ||
#include <util/string_utils.h> | ||
|
||
#include <set> | ||
|
||
bool java_is_array_type(const typet &type) | ||
{ | ||
if(type.id()!=ID_struct) | ||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -6,15 +6,12 @@ Author: Daniel Kroening, [email protected] | |
|
||
\*******************************************************************/ | ||
|
||
#include <util/symbol_table.h> | ||
#include <util/message.h> | ||
#include <util/std_expr.h> | ||
|
||
#include "java_bytecode_parse_tree.h" | ||
#ifndef CPROVER_JAVA_BYTECODE_JAVA_UTILS_H | ||
#define CPROVER_JAVA_BYTECODE_JAVA_UTILS_H | ||
|
||
#include <util/type.h> | ||
#include <util/message.h> | ||
#include <util/std_expr.h> | ||
#include <util/symbol_table.h> | ||
|
||
bool java_is_array_type(const typet &type); | ||
|
||
|
This file contains hidden or 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 |
---|---|---|
|
@@ -18,8 +18,6 @@ Author: Daniel Kroening, [email protected] | |
|
||
class namespacet; | ||
|
||
class namespacet; | ||
|
||
class pointer_logict | ||
{ | ||
public: | ||
|
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch.