Safe Haskell | None |
---|---|
Language | Haskell98 |
Synopsis
- data Digraph a = DG [a] [(a, a)]
- cayleyDigraphP :: (Num a, Ord a) => [a] -> Digraph a
- cayleyGraphP :: (Ord a, Show a) => [Permutation a] -> Graph (Permutation a)
- cayleyDigraphS :: Ord a => ([a], [([a], [a])]) -> Digraph [a]
- cayleyGraphS :: Ord a => ([a], [([a], [a])]) -> Graph [a]
- fromTranspositions :: [SGen] -> Permutation Int
- fromTrans :: [SGen] -> [Int]
- bubblesort :: Ord a => [a] -> [a]
- toTrans :: Ord a => [a] -> [SGen]
- toTranspositions :: (Num a, Enum a, Ord a) => Permutation a -> [SGen]
- inversions :: (Num b, Enum b, Ord b) => Permutation b -> [(b, b)]
Documentation
DG [a] [(a, a)] |
cayleyGraphP :: (Ord a, Show a) => [Permutation a] -> Graph (Permutation a) Source #
The Cayley graph (undirected) on the generators (and their inverses), for a group given as permutations
cayleyDigraphS :: Ord a => ([a], [([a], [a])]) -> Digraph [a] Source #
cayleyGraphS :: Ord a => ([a], [([a], [a])]) -> Graph [a] Source #
The Cayley graph (undirected) on the generators (and their inverses), for a group given as generators and relations
fromTranspositions :: [SGen] -> Permutation Int Source #
bubblesort :: Ord a => [a] -> [a] Source #
toTranspositions :: (Num a, Enum a, Ord a) => Permutation a -> [SGen] Source #
inversions :: (Num b, Enum b, Ord b) => Permutation b -> [(b, b)] Source #