Skip to content

Commit de5dcd4

Browse files
Merge branch 'default_layer_constructors' of https://github.com/JuliaGraphs/MultilayerGraphs.jl into default_layer_constructors
2 parents 9724ebb + 82e6fb1 commit de5dcd4

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ In the package documentation you can find a [tutorial](https://juliagraphs.org/M
5656
- [ ] [Implement projected monoplex and overlay graphs](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/35);
5757
- [ ] [Implement more default multilayer graphs](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/36) (e.g. multiplex graphs);
5858
- [ ] [Implement configuration models / graph generators for interlayers](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/46);
59-
- [ ] [Relax the requirement of same `T` and `U` for all `Layer`s and `Interlayer`s that are meant to constitute a `Multilayer(Di)Graph`](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/53).
59+
- [ ] [Relax the requirement of same `T` and `U` for all `Layer`s and `Interlayer`s that are meant to constitute a `Multilayer(Di)Graph`](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/53);
60+
- [ ] [Implement multilayer graph data visualisation functionalities (or a new package)](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/54).
6061

6162
## How to Contribute
6263

docs/src/API.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,7 @@ Interlayer(
9090
transfer_vertex_metadata::Bool = false
9191
) where {T<:Integer, U <: Union{Nothing, <: Real}, G<:AbstractGraph{T}}
9292
93-
layer_simplegraph(
94-
name::Symbol,
95-
vertices::Union{Vector{MultilayerVertex{nothing}},Vector{Node}},
96-
edge_list::Union{Vector{<:MultilayerEdge}, Vector{NTuple{2, MultilayerVertex{nothing}}}};
97-
vertextype::Type{T} = Int64,
98-
weighttype::Type{U} = Float64
99-
) where {T<:Integer,U<:Real}
100-
93+
interlayer_simplegraph
10194
interlayer_simpleweightedgraph
10295
interlayer_metagraph
10396
interlayer_valgraph

docs/src/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,8 @@ Read a complete list of analytical methods exclusive to multilayer graphs in the
881881
- [Implement projected monoplex and overlay graphs](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/35);
882882
- [Implement more default multilayer graphs](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/36) (e.g. multiplex graphs);
883883
- [Implement configuration models / graph generators for interlayers](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/46);
884-
- [Relax the requirement of same `T` and `U` for all `Layer`s and `Interlayer`s that are meant to constitute a `Multilayer(Di)Graph`](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/53).
884+
- [Relax the requirement of same `T` and `U` for all `Layer`s and `Interlayer`s that are meant to constitute a `Multilayer(Di)Graph`](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/53);
885+
- [Implement multilayer graph data visualisation functionalities (or a new package)](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/54).
885886

886887
## How to Contribute
887888

0 commit comments

Comments
 (0)