@@ -5,22 +5,22 @@ A library for partitioned graphs and their quotients.
55
66This module provides data structures and functionalities to work with partitioned graphs,
77including quotient vertices and edges, as well as views of partitioned graphs.
8- It defines an abstract supertype [ `AbstractPartitionedGraph`](@ref) for graphs that have
8+ It defines an abstract supertype `AbstractPartitionedGraph` for graphs that have
99some notion of a non-trivial partitioning of their vertices. It also provides
1010a interface of functions that can be overloaded on any subtype of `Graphs.AbstractGraph` to
11- make this subtype behave like a partitioned graph, without itself subtyping [ `AbstractPartitionedGraph`](@ref) .
11+ make this subtype behave like a partitioned graph, without itself subtyping `AbstractPartitionedGraph`.
1212
1313It defines the following concrete types:
14- - [ `QuotientVertex`](@ref) : Represents a vertex in the quotient graph.
15- - [ `QuotientEdge`](@ref) : Represents an edge in the quotient graph.
16- - [ `PartitionedView`](@ref) : A lightweight view of a partitioned graph.
17- - [ `PartitionedGraph`](@ref) : An implementation of a partitioned graph with extra caching
18- not provided by [ `PartitionedView`](@ref) .
19- - [ `QuotientView`](@ref) : A view of the quotient graph derived from a partitioned graph.
14+ - `QuotientVertex`: Represents a vertex in the quotient graph.
15+ - `QuotientEdge`: Represents an edge in the quotient graph.
16+ - `PartitionedView`: A lightweight view of a partitioned graph.
17+ - `PartitionedGraph`: An implementation of a partitioned graph with extra caching
18+ not provided by `PartitionedView`.
19+ - `QuotientView`: A view of the quotient graph derived from a partitioned graph.
2020It provides the following functions:
21- - [ `partitionedgraph`](@ref) : Partitions an `AbstractGraph`.
22- - [ `departition`](@ref) : Removes a single layer of partitioning from a partitioned graph.
23- - [ `unpartition`](@ref) : Recursively removes all layers of partitioning from a partitioned graph.
21+ - `partitionedgraph`: Partitions an `AbstractGraph`.
22+ - `departition`: Removes a single layer of partitioning from a partitioned graph.
23+ - `unpartition`: Recursively removes all layers of partitioning from a partitioned graph.
2424
2525## Interfaces
2626
0 commit comments