Name:                GraphHammer
Version:             0.3
Synopsis:            GraphHammer Haskell graph analyses framework inspired by STINGER.
Description:
  GraphHammer is a graph analyses framework. See
  "GraphHammer.SimplestParallel" for library documentation. Examples
  exists in GraphHammer-examples package: see
  "GraphHammer.VertexDegree", "GraphHammer.TriangleCount",
  "GraphHammer.ClusteringCoefficients" for examples.
License:             GPL-2
License-file:        LICENSE
Author:              serguey.zefirov@parsci.com
Maintainer:          alexander.vershilov@parsci.com
Copyright:           2013, Parallel Scientific Labs, LLC
Category:            Concurrency
Build-type:          Simple
-- Extra-source-files:
Cabal-version:       >=1.6


Library
  hs-source-dirs:      src
  Exposed-modules:     GraphHammer
                       GraphHammer.Info
                       GraphHammer.HList
                       GraphHammer.SimplestParallel
  Other-modules:       GraphHammer.IntSet
                       GraphHammer.IntMap
  Build-depends:       base >= 3.0 && < 5.0,
                       containers >= 0.3,
                       mtl >= 1.1,
                       array >= 0.3,
                       stm >= 2.1 && < 3,
                       time >= 1.4,
                       Graph500 >= 0.3
  ghc-options: -O3 -Wall

source-repository head
    type:     git
    location: git://github.com/ps-labs/GraphHammer.git