summaryrefslogtreecommitdiff
path: root/src/analysis/lattices/flat.h
Commit message (Collapse)AuthorAgeFilesLines
* [analysis][NFC] Refactor lattice unit tests (#6065)Thomas Lively2023-11-011-0/+7
| | | | | | Many of the lattice tests were essentially copy-pasted from one lattice to the next because they all tested isomorphic subsets of the various lattices, specifically in the shape of a diamond. Refactor the code so that all lattices that have tests of this shape use the same utility test functions.
* [analysis][NFC] Rename parameters to join and meet methods (#6056)Thomas Lively2023-10-301-4/+4
| | | | | | Since these methods, which operate on lattice elements, moved to the lattice types, it no longer makes much sense for their parameters to be called `self` and `other`. Rename them to `joinee` and `joiner` for joins and `meetee` and `meeter` for meets.
* [analysis] Implement a Lift lattice (#6040)Thomas Lively2023-10-251-0/+1
| | | | This lattice "lifts" another lattice by inserting a new bottom element underneath it.
* [analysis] Implement Flat lattice (#6039)Thomas Lively2023-10-251-0/+93
Given a type `T`, `Flat<T>` is the lattice where none of the values of `T` are comparable except with themselves, but they are all greater than a common bottom element not in `T` and less than a common top element also not in `T`.