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 aff38de commit 8601941Copy full SHA for 8601941
src/analysis/lattices/array.h
@@ -60,7 +60,8 @@ template<Lattice L, size_t N> struct Array {
60
return getTopImpl(std::make_index_sequence<N>());
61
}
62
63
- // `a` <= `b` if their elements are pairwise <=, etc.
+ // `a` <= `b` if all their elements are pairwise <=, etc. Unless we determine
64
+ // that there is no relation, we must check all the elements.
65
LatticeComparison compare(const Element& a, const Element& b) const noexcept {
66
auto result = EQUAL;
67
for (size_t i = 0; i < N; ++i) {
0 commit comments