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 822f8be commit b6b33b5Copy full SHA for b6b33b5
src/analysis/lattices/vector.h
@@ -47,7 +47,8 @@ template<Lattice L> struct Vector {
47
return Element(size, lattice.getTop());
48
}
49
50
- // `a` <= `b` if their elements are pairwise <=, etc.
+ // `a` <= `b` if their elements are pairwise <=, etc. Unless we determine
51
+ // that there is no relation, we must check all the elements.
52
LatticeComparison compare(const Element& a, const Element& b) const noexcept {
53
assert(a.size() == size);
54
assert(b.size() == size);
0 commit comments