We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07af31b commit a56a4f0Copy full SHA for a56a4f0
src/solvers/strings/string_refinement.cpp
@@ -988,12 +988,12 @@ static optionalt<exprt> get_valid_array_size(
988
stream << "(sr::get_valid_array_size) size is not valid" << messaget::eom;
989
return {};
990
}
991
- std::size_t n = *num_size_opt;
+ std::size_t num_size = *num_size_opt;
992
993
- if(n > MAX_CONCRETE_STRING_SIZE)
+ if(num_size > MAX_CONCRETE_STRING_SIZE)
994
{
995
stream << "(sr::get_valid_array_size) long string (size " << format(size)
996
- << " = " << n << ") " << format(arr) << messaget::eom;
+ << " = " << num_size << ") " << format(arr) << messaget::eom;
997
stream << "(sr::get_valid_array_size) consider reducing "
998
"max-nondet-string-length so "
999
"that no string exceeds "
0 commit comments