Safe Haskell | None |
---|---|
Language | Haskell2010 |
Construct a graph from constraints
x + n y becomes x ---(-n)--- y
x n + y becomes x ---(+n)--- y
the default edge (= no edge) is labelled with infinity.
Building the graph involves keeping track of the node names. We do this in a finite map, assigning consecutive numbers to nodes.
Synopsis
- type Matrix a = Array (Int, Int) a
- warshall :: SemiRing a => Matrix a -> Matrix a
- type AdjList node edge = Map node [(node, edge)]
- warshallG :: (SemiRing edge, Ord node) => AdjList node edge -> AdjList node edge
- data Weight
- inc :: Weight -> Int -> Weight
- data Node
- data Rigid
- type NodeId = Int
- type RigidId = Int
- type FlexId = Int
- type Scope = RigidId -> Bool
- infinite :: Rigid -> Bool
- isBelow :: Rigid -> Weight -> Rigid -> Bool
- data Constraint
- type Constraints = [Constraint]
- emptyConstraints :: Constraints
- data Graph = Graph {}
- initGraph :: Graph
- type GM = State Graph
- addFlex :: FlexId -> Scope -> GM ()
- addNode :: Node -> GM Int
- addEdge :: Node -> Int -> Node -> GM ()
- addConstraint :: Constraint -> GM ()
- buildGraph :: Constraints -> Graph
- mkMatrix :: Int -> (Int -> Int -> Weight) -> Matrix Weight
- data LegendMatrix a b c = LegendMatrix {}
- type Solution = Map Int SizeExpr
- emptySolution :: Solution
- extendSolution :: Solution -> Int -> SizeExpr -> Solution
- data SizeExpr
- sizeRigid :: Rigid -> Int -> SizeExpr
- solve :: Constraints -> Maybe Solution
Documentation
warshallG :: (SemiRing edge, Ord node) => AdjList node edge -> AdjList node edge Source #
Warshall's algorithm on a graph represented as an adjacency list.
Edge weight in the graph, forming a semi ring.
Nodes of the graph are either
- flexible variables (with identifiers drawn from Int
),
- rigid variables (also identified by Int
s), or
- constants (like 0, infinity, or anything between).
isBelow :: Rigid -> Weight -> Rigid -> Bool Source #
isBelow r w r'
checks, if r
and r'
are connected by w
(meaning w
not infinite),
whether r + w <= r'
.
Precondition: not the same rigid variable.
data Constraint Source #
A constraint is an edge in the graph.
NewFlex FlexId Scope | |
Arc Node Int Node | For |
Instances
Pretty Constraint Source # | |
Defined in Agda.Utils.Warshall pretty :: Constraint -> Doc Source # prettyPrec :: Int -> Constraint -> Doc Source # prettyList :: [Constraint] -> Doc Source # |
type Constraints = [Constraint] Source #
addEdge :: Node -> Int -> Node -> GM () Source #
addEdge n1 k n2
improves the weight of egde n1->n2
to be at most k
.
Also adds nodes if not yet present.
addConstraint :: Constraint -> GM () Source #
buildGraph :: Constraints -> Graph Source #
data LegendMatrix a b c Source #
A matrix with row descriptions in b
and column descriptions in c
.
Instances
(Pretty a, Pretty b, Pretty c) => Pretty (LegendMatrix a b c) Source # | |
Defined in Agda.Utils.Warshall pretty :: LegendMatrix a b c -> Doc Source # prettyPrec :: Int -> LegendMatrix a b c -> Doc Source # prettyList :: [LegendMatrix a b c] -> Doc Source # |
type Solution = Map Int SizeExpr Source #
A solution assigns to each flexible variable a size expression
which is either a constant or a v + n
for a rigid variable v
.