Skip to content

Commit 943a6d6

Browse files
Update src/multilayergraph.jl
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 08757b9 commit 943a6d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/multilayergraph.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ mutable struct MultilayerGraph{T,U} <: AbstractMultilayerGraph{T,U}
77
layers::Vector{LayerDescriptor{T,U}} # vector containing all the layers of the multilayer graph. Their underlying graphs must be all undirected.
88
interlayers::OrderedDict{Set{Symbol},InterlayerDescriptor{T,U}} # the ordered dictionary containing all the interlayers of the multilayer graph. Their underlying graphs must be all undirected.
99
v_V_associations::Bijection{T,<:MultilayerVertex} # A Bijection from Bijections.jl that associates numeric vertices to `MultilayerVertex`s.
10-
idx_N_associations::Bijection{Int64,Node,Dict{Int64, Node}, Dict{Node, Int64}} # A Bijection from Bijections.jl that associates Int64 to `Node`s.
10+
idx_N_associations::Bijection{Int64,Node,Dict{Int64,Node},Dict{Node,Int64}} # A Bijection from Bijections.jl that associates Int64 to `Node`s.
1111
fadjlist::Vector{Vector{HalfEdge{<:MultilayerVertex,<:Union{Nothing,U}}}} # the forward adjacency list of the MultilayerGraph. It is a vector of vectors of `HalfEdge`s. Its i-th element are the `HalfEdge`s that originate from `v_V_associations[i]`.
1212
v_metadata_dict::Dict{T,<:Union{<:Tuple,<:NamedTuple}} # A Dictionary that associates numeric vertices to their metadata.
1313
end

0 commit comments

Comments
 (0)