Skip to content

Commit b06476c

Browse files
Correcting indentation in the comments
1 parent 3e9668a commit b06476c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/solvers/refinement/string_constraint_generator_indexof.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ exprt string_constraint_generatort::add_axioms_for_index_of_string(
162162
// a4 && a5 <=> a6:
163163
// forall n:[from_index,|haystack|-|needle|].
164164
// !contains || n < offset ==>
165-
// haystack[n] != needle[0] || ... ||
166-
// haystack[n+|needle|-1] != needle[|needle|-1]
165+
// haystack[n] != needle[0] || ... ||
166+
// haystack[n+|needle|-1] != needle[|needle|-1]
167167
symbol_exprt qvar2=fresh_univ_index("QA_index_of_string_2", index_type);
168168
mp_integer sub_length;
169169
assert(!to_integer(needle.length(), sub_length));
@@ -284,8 +284,8 @@ exprt string_constraint_generatort::add_axioms_for_last_index_of_string(
284284
// a4 && a5 <=> a6:
285285
// forall n:[0, min(from_index,|haystack|-|needle|)].
286286
// !contains || n > offset ==>
287-
// haystack[n] != needle[0] || ... ||
288-
// haystack[n+|substring|-1] != needle[|substring|-1]
287+
// haystack[n] != needle[0] || ... ||
288+
// haystack[n+|substring|-1] != needle[|substring|-1]
289289
symbol_exprt qvar2=fresh_univ_index("QA_index_of_string_2", index_type);
290290
mp_integer sub_length;
291291
assert(!to_integer(needle.length(), sub_length));

0 commit comments

Comments
 (0)