name: algebraic-graphs version: 0.3 synopsis: A library for algebraic graph construction and transformation license: MIT license-file: LICENSE author: Andrey Mokhov , github: @snowleopard maintainer: Andrey Mokhov , github: @snowleopard, Alexandre Moine , github: @nobrakal copyright: Andrey Mokhov, 2016-2018 homepage: https://github.com/snowleopard/alga category: Algebra, Algorithms, Data Structures, Graphs build-type: Simple cabal-version: >=1.18 tested-with: GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3, GHC==8.6.1 stability: experimental description: is a library for algebraic construction and manipulation of graphs in Haskell. See for the motivation behind the library, the underlying theory and implementation details. . The top-level module defines the main data type for /algebraic graphs/ , as well as associated algorithms. For type-safe representation and manipulation of /non-empty algebraic graphs/, see . Furthermore, /algebraic graphs with edge labels/ are implemented in . . The library also provides conventional graph data structures, such as along with its various flavours: adjacency maps specialised to graphs with vertices of type 'Int' (), non-empty adjacency maps (), and adjacency maps with edge labels (). A large part of the API of algebraic graphs and adjacency maps is available through the 'Foldable'-like type class . . The type classes defined in and can be used for polymorphic construction and manipulation of graphs. Also see that defines the Boehm-Berarducci encoding of algebraic graphs. . This is an experimental library and the API is expected to remain unstable until version 1.0.0. Please consider contributing to the on-going . extra-doc-files: CHANGES.md README.md source-repository head type: git location: https://github.com/snowleopard/alga.git library hs-source-dirs: src exposed-modules: Algebra.Graph, Algebra.Graph.AdjacencyIntMap, Algebra.Graph.AdjacencyIntMap.Algorithm, Algebra.Graph.AdjacencyIntMap.Internal, Algebra.Graph.AdjacencyMap, Algebra.Graph.AdjacencyMap.Algorithm, Algebra.Graph.AdjacencyMap.Internal, Algebra.Graph.Class, Algebra.Graph.Export, Algebra.Graph.Export.Dot, Algebra.Graph.Fold, Algebra.Graph.HigherKinded.Class, Algebra.Graph.Internal, Algebra.Graph.Label, Algebra.Graph.Labelled, Algebra.Graph.Labelled.AdjacencyMap, Algebra.Graph.Labelled.AdjacencyMap.Internal, Algebra.Graph.Labelled.Example.Automaton, Algebra.Graph.Labelled.Example.Network, Algebra.Graph.NonEmpty, Algebra.Graph.NonEmpty.AdjacencyMap, Algebra.Graph.NonEmpty.AdjacencyMap.Internal, Algebra.Graph.Relation, Algebra.Graph.Relation.Internal, Algebra.Graph.Relation.InternalDerived, Algebra.Graph.Relation.Preorder, Algebra.Graph.Relation.Reflexive, Algebra.Graph.Relation.Symmetric, Algebra.Graph.Relation.Transitive, Algebra.Graph.ToGraph, Data.Graph.Typed build-depends: array >= 0.4 && < 0.6, base >= 4.7 && < 5, base-compat >= 0.9.1 && < 0.11, containers >= 0.5.5.1 && < 0.8, deepseq >= 1.3.0.1 && < 1.5, mtl >= 2.1 && < 2.3 if !impl(ghc >= 8.0) build-depends: semigroups >= 0.18.3 && < 0.18.4 default-language: Haskell2010 default-extensions: FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving ScopedTypeVariables TupleSections TypeFamilies other-extensions: CPP DeriveFunctor OverloadedStrings RecordWildCards GHC-options: -Wall -fno-warn-name-shadowing -fspec-constr if impl(ghc >= 8.0) GHC-options: -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints test-suite test-alga hs-source-dirs: test type: exitcode-stdio-1.0 main-is: Main.hs other-modules: Algebra.Graph.Test, Algebra.Graph.Test.API, Algebra.Graph.Test.AdjacencyIntMap, Algebra.Graph.Test.AdjacencyMap, Algebra.Graph.Test.Arbitrary, Algebra.Graph.Test.Export, Algebra.Graph.Test.Fold, Algebra.Graph.Test.Generic, Algebra.Graph.Test.Graph, Algebra.Graph.Test.Internal, Algebra.Graph.Test.Labelled.AdjacencyMap, Algebra.Graph.Test.Labelled.Graph, Algebra.Graph.Test.NonEmpty.AdjacencyMap, Algebra.Graph.Test.NonEmpty.Graph, Algebra.Graph.Test.Relation, Data.Graph.Test.Typed if impl(ghc >= 8.0.2) other-modules: Algebra.Graph.Test.RewriteRules build-depends: algebraic-graphs, array >= 0.4 && < 0.6, base >= 4.7 && < 5, base-compat >= 0.9.1 && < 0.11, base-orphans >= 0.5.4 && < 0.9, containers >= 0.5.5.1 && < 0.8, extra >= 1.5 && < 2, QuickCheck >= 2.9 && < 2.13 if !impl(ghc >= 8.0) build-depends: semigroups >= 0.18.3 && < 0.18.4 if impl(ghc >= 8.0.2) build-depends: inspection-testing >= 0.4 && < 0.5 default-language: Haskell2010 GHC-options: -Wall -fno-warn-name-shadowing -fspec-constr if impl(ghc >= 8.0) GHC-options: -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints default-extensions: FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving ScopedTypeVariables TupleSections TypeFamilies other-extensions: ConstrainedClassMethods ConstraintKinds RankNTypes ViewPatterns