Skip to content

Commit

Permalink
expand comment
Browse files Browse the repository at this point in the history
  • Loading branch information
tlively committed Oct 30, 2023
1 parent 19f55c3 commit 8efecb1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/analysis/lattices/vector.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ template<Lattice L> struct Vector {
return Element(size, lattice.getTop());
}

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

0 comments on commit 8efecb1

Please sign in to comment.