diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2018-05-15 21:21:48 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2018-05-15 21:21:48 +0200 |
commit | 879e0c7218298349b9c92e9d3362830c371ec78e (patch) | |
tree | 5f50ccbea875c2ef77c830da43fbe29964e5630a /src/Data/Scientific | |
parent | e8bd291609192725ea0b40190fd3bd84f0d96920 (diff) | |
download | trivmix-879e0c7218298349b9c92e9d3362830c371ec78e.tar trivmix-879e0c7218298349b9c92e9d3362830c371ec78e.tar.gz trivmix-879e0c7218298349b9c92e9d3362830c371ec78e.tar.bz2 trivmix-879e0c7218298349b9c92e9d3362830c371ec78e.tar.xz trivmix-879e0c7218298349b9c92e9d3362830c371ec78e.zip |
Switch to Scientific-math
Diffstat (limited to 'src/Data/Scientific')
-rw-r--r-- | src/Data/Scientific/Lift.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Data/Scientific/Lift.hs b/src/Data/Scientific/Lift.hs new file mode 100644 index 0000000..7d1a372 --- /dev/null +++ b/src/Data/Scientific/Lift.hs | |||
@@ -0,0 +1,9 @@ | |||
1 | {-# LANGUAGE TemplateHaskell #-} | ||
2 | {-# OPTIONS_GHC -fno-warn-orphans #-} | ||
3 | |||
4 | module Data.Scientific.Lift where | ||
5 | |||
6 | import Data.Scientific (Scientific) | ||
7 | import Language.Haskell.TH.Lift (deriveLift) | ||
8 | |||
9 | deriveLift ''Scientific | ||