packages feed

math-grads-0.1.6.7: math-grads.cabal

cabal-version: >=1.10
name: math-grads
version: 0.1.6.7
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.Isomorphism.RI
        Math.Grads.Algo.Isomorphism.Types
        Math.Grads.Algo.Isomorphism.Ullman
        Math.Grads.Algo.Paths
        Math.Grads.Algo.SSSR
        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.4.7.0 && <1.5,
        array >=0.5.4.0 && <0.6,
        bimap >=0.4.0 && <0.5,
        containers >=0.6.2.1 && <0.7,
        lens >=4.18.1 && <4.19,
        linear >=1.20.9 && <1.21,
        matrix >=0.3.6.1 && <0.4,
        mtl >=2.2.2 && <2.3,
        ilist >=0.4.0.0 && <0.5,
        random ==1.1.*,
        vector >=0.12.1.2 && <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.0.0 && <4.14,
        containers >=0.6.2.1 && <0.7,
        hspec >=2.7.1 && <2.8,
        math-grads -any,
        random ==1.1.*

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.0.0 && <4.14,
        containers >=0.6.2.1 && <0.7,
        hspec >=2.7.1 && <2.8,
        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.0.0 && <4.14,
        array >=0.5.4.0 && <0.6,
        containers >=0.6.2.1 && <0.7,
        hspec >=2.7.1 && <2.8,
        math-grads -any

test-suite SSSR-test
    type: exitcode-stdio-1.0
    main-is: SSSR.hs
    hs-source-dirs: test
    default-language: Haskell2010
    ghc-options: -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        base >=4.13.0.0 && <4.14,
        array >=0.5.4.0 && <0.6,
        containers >=0.6.2.1 && <0.7,
        hspec >=2.7.1 && <2.8,
        math-grads -any