Safe Haskell | None |
---|---|
Language | Haskell2010 |
Maintaining a list of favorites of some partially ordered type. Only the best elements are kept.
To avoid name clashes, import this module qualified, as in
import Agda.Utils.Favorites (Favorites)
import qualified Agda.Utils.Favorites as Fav
Synopsis
- newtype Favorites a = Favorites {
- toList :: [a]
- data CompareResult a
- = Dominates {
- dominated :: [a]
- notDominated :: [a]
- | IsDominated {
- dominator :: a
- = Dominates {
- compareWithFavorites :: PartialOrd a => a -> Favorites a -> CompareResult a
- compareFavorites :: PartialOrd a => Favorites a -> Favorites a -> (Favorites a, Favorites a)
- unionCompared :: (Favorites a, Favorites a) -> Favorites a
- insertCompared :: a -> Favorites a -> CompareResult a -> Favorites a
- insert :: PartialOrd a => a -> Favorites a -> Favorites a
- union :: PartialOrd a => Favorites a -> Favorites a -> Favorites a
- fromList :: PartialOrd a => [a] -> Favorites a
Documentation
A list of incomparable favorites.
Instances
Foldable Favorites Source # | |
Defined in Agda.Utils.Favorites fold :: Monoid m => Favorites m -> m foldMap :: Monoid m => (a -> m) -> Favorites a -> m foldMap' :: Monoid m => (a -> m) -> Favorites a -> m foldr :: (a -> b -> b) -> b -> Favorites a -> b foldr' :: (a -> b -> b) -> b -> Favorites a -> b foldl :: (b -> a -> b) -> b -> Favorites a -> b foldl' :: (b -> a -> b) -> b -> Favorites a -> b foldr1 :: (a -> a -> a) -> Favorites a -> a foldl1 :: (a -> a -> a) -> Favorites a -> a elem :: Eq a => a -> Favorites a -> Bool maximum :: Ord a => Favorites a -> a minimum :: Ord a => Favorites a -> a | |
Singleton a (Favorites a) Source # | |
Defined in Agda.Utils.Favorites | |
Null (Favorites a) Source # | |
PartialOrd a => Monoid (Favorites a) Source # | |
PartialOrd a => Semigroup (Favorites a) Source # | |
Show a => Show (Favorites a) Source # | |
Ord a => Eq (Favorites a) Source # | Equality checking is a bit expensive, since we need to sort!
Maybe use a |
data CompareResult a Source #
Result of comparing a candidate with the current favorites.
Dominates | Great, you are dominating a possibly (empty list of favorites)
but there is also a rest that is not dominated.
If |
| |
IsDominated | Sorry, but you are dominated by that favorite. |
|
compareWithFavorites :: PartialOrd a => a -> Favorites a -> CompareResult a Source #
Gosh, got some pretty a
here, compare with my current favorites!
Discard it if there is already one that is better or equal.
(Skewed conservatively: faithful to the old favorites.)
If there is no match for it, add it, and
dispose of all that are worse than a
.
We require a partial ordering. Less is better! (Maybe paradoxically.)
compareFavorites :: PartialOrd a => Favorites a -> Favorites a -> (Favorites a, Favorites a) Source #
Compare a new set of favorites to an old one and discard the new favorites that are dominated by the old ones and vice verse. (Skewed conservatively: faithful to the old favorites.)
compareFavorites new old = (new', old')
insertCompared :: a -> Favorites a -> CompareResult a -> Favorites a Source #
After comparing, do the actual insertion.
insert :: PartialOrd a => a -> Favorites a -> Favorites a Source #
Compare, then insert accordingly.
insert a l = insertCompared a l (compareWithFavorites a l)
union :: PartialOrd a => Favorites a -> Favorites a -> Favorites a Source #
Insert all the favorites from the first list into the second.
fromList :: PartialOrd a => [a] -> Favorites a Source #
Construct favorites from elements of a partial order. The result depends on the order of the list if it contains equal elements, since earlier seen elements are favored over later seen equals. The first element of the list is seen first.