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.
Remove string refinement iteration limit
This sets the string refinement iteration limit to zero, i.e. unlimited. The mechanism for providing a limit is left in place, for use probably driven by a command-line argument by the first user to need that facility.
- Loading branch information
Showing
2 changed files
with
2 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
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,7 +28,7 @@ Author: Alberto Griggio, [email protected] | |
#include <solvers/refinement/string_constraint_generator.h> | ||
#include <solvers/refinement/string_refinement_invariant.h> | ||
|
||
#define MAX_NB_REFINEMENT 100 | ||
#define DEFAULT_MAX_NB_REFINEMENT std::numeric_limits<size_t>::max() | ||
#define CHARACTER_FOR_UNKNOWN '?' | ||
|
||
struct index_set_pairt | ||
|