fgl-5.5.3.0: Martin Erwig's Functional Graph Library

Safe HaskellNone
LanguageHaskell98

Data.Graph.Inductive.PatriciaTree

Description

An efficient implementation of Graph using big-endian patricia tree (i.e. Data.IntMap).

This module provides the following specialised functions to gain more performance, using GHC's RULES pragma:

Documentation

data Gr a b Source

Instances

Bifunctor Gr Source 
DynGraph Gr Source 
Graph Gr Source 
(Eq a, Ord b) => Eq (Gr a b) Source 
(Read a, Read b) => Read (Gr a b) Source 
(Show a, Show b) => Show (Gr a b) Source 
Generic (Gr a b) Source 
(NFData a, NFData b) => NFData (Gr a b) Source 
type Rep (Gr a b) Source 

type UGr = Gr () () Source