| Copyright | (c) Dominik Schrempf 2019 |
|---|---|
| License | GPL-3 |
| Maintainer | dominik.schrempf@gmail.com |
| Stability | unstable |
| Portability | portable |
| Safe Haskell | None |
| Language | Haskell2010 |
Distance.Options
Description
Creation date: Thu Aug 29 13:02:22 2019.
Synopsis
- data DistanceArguments = DistanceArguments {}
- data DistanceMeasure
- type Distance = LoggingT (ReaderT DistanceArguments IO)
- distanceArguments :: Parser DistanceArguments
- distanceFooter :: String
Documentation
data DistanceArguments Source #
Arguments needed to compute distance measures.
Constructors
| DistanceArguments | |
Fields | |
data DistanceMeasure Source #
Supported distance measures.
Constructors
| Symmetric | Symmetric distance. |
| IncompatibleSplit Double | Incompatible split distance; collapse nodes with branch support below given value. |
| BranchScore | Branch score distance. |
Instances
| Show DistanceMeasure Source # | |
Defined in Distance.Options Methods showsPrec :: Int -> DistanceMeasure -> ShowS # show :: DistanceMeasure -> String # showList :: [DistanceMeasure] -> ShowS # | |
distanceArguments :: Parser DistanceArguments Source #
COmmand line parser.
distanceFooter :: String Source #
Information about provided distance types.