1Name:           vector-benchmarks
2Version:        0.10.10
3License:        BSD3
4License-File:   LICENSE
5Author:         Roman Leshchinskiy <rl@cse.unsw.edu.au>
6Maintainer:     Roman Leshchinskiy <rl@cse.unsw.edu.au>
7Copyright:      (c) Roman Leshchinskiy 2010-2012
8Cabal-Version:  >= 1.2
9Build-Type:     Simple
10
11Executable algorithms
12  Main-Is: Main.hs
13
14  Build-Depends: base >= 2 && < 5, array,
15                 criterion >= 1.5.4.0 && < 1.6,
16                 mwc-random >= 0.5 && < 0.15,
17                 vector, optparse-applicative
18
19  if impl(ghc<6.13)
20    Ghc-Options: -finline-if-enough-args -fno-method-sharing
21
22  Ghc-Options: -O2
23
24  Other-Modules:
25        Algo.ListRank
26        Algo.Rootfix
27        Algo.Leaffix
28        Algo.AwShCC
29        Algo.HybCC
30        Algo.Quickhull
31        Algo.Spectral
32        Algo.Tridiag
33
34        TestData.ParenTree
35        TestData.Graph
36        TestData.Random
37
38