Skip to content

Commit 8601941

Browse files
committed
expand comment
1 parent aff38de commit 8601941

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/analysis/lattices/array.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ template<Lattice L, size_t N> struct Array {
6060
return getTopImpl(std::make_index_sequence<N>());
6161
}
6262

63-
// `a` <= `b` if their elements are pairwise <=, etc.
63+
// `a` <= `b` if all their elements are pairwise <=, etc. Unless we determine
64+
// that there is no relation, we must check all the elements.
6465
LatticeComparison compare(const Element& a, const Element& b) const noexcept {
6566
auto result = EQUAL;
6667
for (size_t i = 0; i < N; ++i) {

0 commit comments

Comments
 (0)