-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathq4c12-twofinger.cabal
86 lines (79 loc) · 3.9 KB
/
q4c12-twofinger.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: ad72006784114c15a8992624d5dec4d36605209132061180060329d24a74eaab
name: q4c12-twofinger
version: 0.2.0.1
synopsis: Efficient alternating finger trees
description: This package provides efficient alternating sequences based on finger trees. These can represent sequences made up of two types of element, @e@ and @a@ where two of the same type of element cannot follow each other directly.
.
Four different flavours are provided, isomorphic to @([(a, e)], a)@, @([(e, a)], e)@, @[(a, e)]@, and @[(e, a)]@.
.
Cons-like operations are /O(1)/ amortised, and append operations are /O(log(min(n, m)))/ amortised.
.
For more details, please see the Haddock documentation of "Q4C12.TwoFinger".
category: Data Structures
homepage: https://github.com/quasicomputational/mega/tree/master/packages/twofinger
bug-reports: https://github.com/quasicomputational/mega/issues
author: quasicomputational <[email protected]>
maintainer: quasicomputational <[email protected]>
license: (Apache-2.0 OR LGPL-2.1-or-later)
license-files: LICENSE.APACHE-2.0,
LICENSE.LGPL-2.1
build-type: Custom
extra-doc-files:
README.markdown
CHANGELOG.markdown
source-repository head
type: git
location: https://github.com/quasicomputational/mega
custom-setup
setup-depends:
Cabal
, base
, cabal-doctest
library
exposed-modules:
Q4C12.TwoFinger
Q4C12.TwoFinger.Internal
hs-source-dirs:
src
default-extensions: BinaryLiterals DataKinds DeriveDataTypeable DeriveGeneric DeriveLift DeriveTraversable DerivingStrategies EmptyCase EmptyDataDecls EmptyDataDeriving HexFloatLiterals LambdaCase KindSignatures MonoLocalBinds NegativeLiterals NumDecimals OverloadedStrings PatternGuards PostfixOperators StandaloneDeriving TypeOperators ViewPatterns
ghc-options: -Weverything -Wno-implicit-prelude -Wno-unsafe -Wno-safe -Wno-missed-specialisations -Wno-all-missed-specialisations -Wno-missing-exported-signatures
build-depends:
base
, containers
, deepseq
, semigroupoids
default-language: Haskell2010
test-suite doctests
type: exitcode-stdio-1.0
main-is: test/Doctest.hs
default-extensions: BinaryLiterals DataKinds DeriveDataTypeable DeriveGeneric DeriveLift DeriveTraversable DerivingStrategies EmptyCase EmptyDataDecls EmptyDataDeriving HexFloatLiterals LambdaCase KindSignatures MonoLocalBinds NegativeLiterals NumDecimals OverloadedStrings PatternGuards PostfixOperators StandaloneDeriving TypeOperators ViewPatterns
ghc-options: -Weverything -Wno-implicit-prelude -Wno-unsafe -Wno-safe -Wno-missed-specialisations -Wno-all-missed-specialisations -Wno-missing-exported-signatures
build-depends:
base
, doctest
, lens
, q4c12-twofinger
if true
ghc-options: -Wno-missing-import-lists -Wno-missing-export-lists
if impl(ghc >= 8.8)
ghc-options: -Wno-missing-deriving-strategies
default-language: Haskell2010
test-suite properties
type: exitcode-stdio-1.0
main-is: test/Properties.hs
default-extensions: BinaryLiterals DataKinds DeriveDataTypeable DeriveGeneric DeriveLift DeriveTraversable DerivingStrategies EmptyCase EmptyDataDecls EmptyDataDeriving HexFloatLiterals LambdaCase KindSignatures MonoLocalBinds NegativeLiterals NumDecimals OverloadedStrings PatternGuards PostfixOperators StandaloneDeriving TypeOperators ViewPatterns
ghc-options: -Weverything -Wno-implicit-prelude -Wno-unsafe -Wno-safe -Wno-missed-specialisations -Wno-all-missed-specialisations -Wno-missing-exported-signatures
build-depends:
QuickCheck
, base
, lens
, lens-properties
, q4c12-twofinger
, tasty
, tasty-quickcheck
default-language: Haskell2010