Skip to content

Commit

Permalink
Add instance {Eq,Ord} RelStDev
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodigrim committed Jun 22, 2024
1 parent c34d628 commit b6aa692
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* Make `IO` benchmarks immune to `-fspec-constr-count` limit.
* Decomission `debug` build flag.
* Decomission warning when `--timeout` is absent.
* Add `instance Eq RelStDev` and `instance Ord RelStDev`.

# 0.3.5

Expand Down
2 changes: 1 addition & 1 deletion src/Test/Tasty/Bench.hs
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ type Progress = ()
--
-- @since 0.2
newtype RelStDev = RelStDev Double
deriving (Show, Read, Typeable)
deriving (Eq, Ord, Show, Read, Typeable)

-- | Whether to measure CPU time or wall-clock time.
-- Normally 'CpuTime' is a better option (and default),
Expand Down

0 comments on commit b6aa692

Please sign in to comment.