-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move MAX_CONCRETE_STRING_SIZE definition to magic
- Loading branch information
1 parent
e1b272e
commit 10b0cb1
Showing
3 changed files
with
3 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ Author: Alberto Griggio, [email protected] | |
#include <solvers/sat/satcheck.h> | ||
#include <solvers/refinement/string_constraint_instantiation.h> | ||
#include <unordered_set> | ||
#include <util/magic.h> | ||
|
||
static bool is_valid_string_constraint( | ||
messaget::mstreamt &stream, | ||
|
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 |
---|---|---|
|
@@ -31,8 +31,6 @@ Author: Alberto Griggio, [email protected] | |
|
||
#define DEFAULT_MAX_NB_REFINEMENT std::numeric_limits<size_t>::max() | ||
#define CHARACTER_FOR_UNKNOWN '?' | ||
// Limit the size of strings in traces to 64M chars to avoid memout | ||
#define MAX_CONCRETE_STRING_SIZE (1 << 26) | ||
|
||
class string_refinementt final: public bv_refinementt | ||
{ | ||
|
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