relation-0.2.1: relation.cabal
name: relation
version: 0.2.1
synopsis: A data structure representing Relations on Sets.
description:
A library to model relationships between two objects that are subclasses of
Ord.
.
Instead using a Map structure we use a two Maps that allows
fast searching either by the key element or the value element.
.
Each of Map is between an element and a set of values.
Thus careful coordination of operations is required.
.
This library lacks of extensive testing, formal testing or automated testing.
Also in comparison to Data.Set or Data.Map (which provide the underlying
infrastructure used) there are some missing methods.
.
Two small examples are currently provided.
.
Changes:
.
@
\ 0.2 -> 0.2.1 2012.06.07. DD. Added Doctests, Example02. Added "Text.Groom" dependency.
.
\ 0.1 -> 0.2 2012.06.06. DD. Translated to English.
.
\ 0.1 2009.11.09. LFL. Corrected the definition of delete.
.
\ 0.0 2009.11.26. LFL. Construction
@
.
homepage: https://www.github.com/d-day/relation/
bug-reports: https://www.github.com/d-day/relation/issues
license: BSD3
license-file: LICENSE
author: Leonel Fonseca
maintainer: Drew Day
copyright: (C) 2012 Drew Day,
(C) 2010 Leonel Fonseca
category: Data Structures
stability: Experimental
build-type: Simple
cabal-version: >= 1.8
tested-with: GHC==7.4
extra-source-files:
LICENSE
README.md
Changes.txt
src/Data/Relation.hs
src/Data/Relation/Examples/E02.hs
Examples/T01_Relation.hs
library
hs-source-dirs : src
exposed-modules: Data.Relation,
Data.Relation.Examples.E02
build-depends : base >= 4.2 && < 6.0,
array >= 0.4 && < 0.5,
containers >= 0.4 && < 0.6,
-- doctest >= 0.7.0 && < 0.8,
groom >= 0.1.1 && < 0.2
-- test-suite dt-examples
-- type: exitcode-stdio-1.0
-- hs-source-dirs: tests
-- main-is: doctest-examples.hs
-- ghc-options: -threaded
-- build-depends: base >= 4.2 && < 6.0,
-- doctest >= 0.7.0 && < 0.8
source-repository head
type: git
location: https://www.github.com/d-day/relation