summaryrefslogtreecommitdiff
path: root/src/analysis
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis')
-rw-r--r--src/analysis/lattices/flat.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/analysis/lattices/flat.h b/src/analysis/lattices/flat.h
index 432171d32..39c067dc0 100644
--- a/src/analysis/lattices/flat.h
+++ b/src/analysis/lattices/flat.h
@@ -51,6 +51,13 @@ public:
bool isTop() const noexcept { return std::get_if<Top>(this); }
const T* getVal() const noexcept { return std::get_if<T>(this); }
T* getVal() noexcept { return std::get_if<T>(this); }
+ bool operator==(const Element& other) const noexcept {
+ return ((isBottom() && other.isBottom()) || (isTop() && other.isTop()) ||
+ (getVal() && other.getVal() && *getVal() == *other.getVal()));
+ }
+ bool operator!=(const Element& other) const noexcept {
+ return !(*this == other);
+ }
};
Element getBottom() const noexcept { return Element{Bot{}}; }