packages feed

math-grads-0.1.5.1: math-grads.cabal

cabal-version: >=1.10
name: math-grads
version: 0.1.5.1
license: BSD3
license-file: LICENSE
copyright: 2017 Alexandr Sadovnikov
maintainer: artemkondyukov, AlexKaneRUS, vks4git
author: Alexandr Sadovnikov
homepage: https://github.com/biocad/math-grads#readme
synopsis: Library containing graph data structures and graph algorithms
description:
    Library containing graph data structures and graph algorithms.
    .
    Graph data structures:
    .
    * Graph type class;
    .
    * GenericGraph data structure.
    .
    Graph algorithms:
    .
    * Ullmann's subgraph isomorphism algorithm;
    .
    * drawing of planar graphs.
category: Math, Graph
build-type: Simple
extra-source-files:
    README.md

source-repository head
    type: git
    location: https://github.com/biocad/math-grads

library
    exposed-modules:
        Math.Grads.Algo.Cycles
        Math.Grads.Algo.Interaction
        Math.Grads.Algo.Isomorphism
        Math.Grads.Algo.Paths
        Math.Grads.Algo.Traversals
        Math.Grads.Drawing.Coords
        Math.Grads.Graph
        Math.Grads.GenericGraph
        Math.Grads.Utils
    hs-source-dirs: src
    other-modules:
        Math.Grads.Drawing.Internal.Coords
        Math.Grads.Drawing.Internal.Cycles
        Math.Grads.Drawing.Internal.CyclesPathsAlignment
        Math.Grads.Drawing.Internal.Paths
        Math.Grads.Drawing.Internal.Sampling
        Math.Grads.Drawing.Internal.Utils
        Math.Grads.Angem
        Math.Grads.Angem.Internal.VectorOperations
        Math.Grads.Angem.Internal.MatrixOperations
    default-language: Haskell2010
    build-depends:
        base >=4.7 && <5,
        aeson <1.5,
        array <0.6,
        containers <0.7,
        linear <1.21,
        matrix <0.4,
        mtl <2.3,
        random <1.2,
        vector <0.13

test-suite Coords-test
    type: exitcode-stdio-1.0
    main-is: Coords.hs
    hs-source-dirs: test
    default-language: Haskell2010
    ghc-options: -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        base <4.13,
        containers <0.7,
        hspec <2.7,
        math-grads -any,
        random <1.2

test-suite Graph-test
    type: exitcode-stdio-1.0
    main-is: Graph.hs
    hs-source-dirs: test
    default-language: Haskell2010
    ghc-options: -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        base <4.13,
        containers <0.7,
        hspec <2.7,
        math-grads -any

test-suite Isomorphism-test
    type: exitcode-stdio-1.0
    main-is: Isomorphism.hs
    hs-source-dirs: test
    default-language: Haskell2010
    ghc-options: -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        base <4.13,
        array <0.6,
        containers <0.7,
        hspec <2.7,
        math-grads -any