From 8efecb1fd7a8343623ea117d76b55d91afade82f Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Mon, 30 Oct 2023 13:41:57 -0700 Subject: [PATCH] expand comment --- src/analysis/lattices/vector.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/analysis/lattices/vector.h b/src/analysis/lattices/vector.h index 28dbcd9432f..d13380868fd 100644 --- a/src/analysis/lattices/vector.h +++ b/src/analysis/lattices/vector.h @@ -47,7 +47,8 @@ template 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);