Add unRelStDev :: RelStDev -> Double

This commit is contained in:
Bodigrim 2024-06-22 17:31:35 +01:00
parent b6aa69282d
commit fe8fa28f3f
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@
* Decomission `debug` build flag.
* Decomission warning when `--timeout` is absent.
* Add `instance Eq RelStDev` and `instance Ord RelStDev`.
* Add `unRelStDev :: RelStDev -> Double`.
# 0.3.5

View File

@ -788,7 +788,7 @@ type Progress = ()
-- only once, use command-line option @--stdev@ @Infinity@.
--
-- @since 0.2
newtype RelStDev = RelStDev Double
newtype RelStDev = RelStDev { unRelStDev :: Double }
deriving (Eq, Ord, Show, Read, Typeable)
-- | Whether to measure CPU time or wall-clock time.