Skip to content

Commit b6b33b5

Browse files
committed
expand comment
1 parent 822f8be commit b6b33b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/analysis/lattices/vector.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ template<Lattice L> struct Vector {
4747
return Element(size, lattice.getTop());
4848
}
4949

50-
// `a` <= `b` if their elements are pairwise <=, etc.
50+
// `a` <= `b` if their elements are pairwise <=, etc. Unless we determine
51+
// that there is no relation, we must check all the elements.
5152
LatticeComparison compare(const Element& a, const Element& b) const noexcept {
5253
assert(a.size() == size);
5354
assert(b.size() == size);

0 commit comments

Comments
 (0)