Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
expand comment
  • Loading branch information
tlively committed Oct 31, 2023
commit b6b33b5df9a25d692e79e0a053a7b11131fcbb11
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