@@ -129,8 +129,6 @@ get_symmetric_interlayer(
129
129
interlayer::In;
130
130
symmetric_interlayer_name::String = String(interlayer.name) * "_rev"
131
131
) where {T,U,G,In<:Interlayer{T,U,G}}
132
-
133
-
134
132
```
135
133
136
134
### Multilayer-Specific Methods
@@ -286,8 +284,6 @@ modularity(
286
284
287
285
288
286
von_neumann_entropy(mg::M) where {T,U,M<:AbstractMultilayerUGraph{T,U}}
289
-
290
-
291
287
```
292
288
293
289
### Representations
@@ -300,7 +296,6 @@ metadata_tensor(mg::M) where {T,U, M <: AbstractMultilayerGraph{T,U}}
300
296
array(amr::AbstractMatrixRepresentation)
301
297
SupraWeightMatrix{T,U}
302
298
supra_weight_matrix(mg::M) where {T,U, M <: AbstractMultilayerGraph{T,U}}
303
-
304
299
```
305
300
306
301
### Traits
@@ -312,6 +307,16 @@ is_meta(g::G) where {G <: AbstractGraph}
312
307
is_meta(g::G) where {G<:Type{<:AbstractGraph}}
313
308
```
314
309
310
+ ### Utilities
311
+ ``` @docs
312
+ multilayer_kronecker_delta(dims::NTuple{4,Int64})
313
+ δk{T}
314
+ δk(N::Int64)
315
+ δ_1{T<: Number}
316
+ δ_2{T<:Number}
317
+ δ_3{T<:Number}
318
+ δ_Ω{T}
319
+ ```
315
320
316
321
317
322
----------------------------------------------------
@@ -374,12 +379,10 @@ AbstractInterlayer
374
379
AbstractMultilayerGraph{T <: Integer, U <: Real}
375
380
has_vertex(mg::M, v::T) where {T, M <: AbstractMultilayerGraph{T}}
376
381
vertices(mg::AbstractMultilayerGraph)
377
- inneighbors(mg::AbstractMultilayerUGraph , v::T) where {T <: Integer, M <: AbstractMultilayerUGraph{T}}
378
- inneighbors(mg::M, v::T) where {T <: Integer , M <: AbstractMultilayerDiGraph{T }}
382
+ inneighbors(mg::M , v::T) where {T,M<: AbstractMultilayerUGraph{T,<:Real }}
383
+ inneighbors(mg::M, v::T) where {T, M<:AbstractMultilayerGraph{T,<:Real }}
379
384
inneighbors(mg::AbstractMultilayerGraph, mv::MultilayerVertex)
380
- outneighbors(mg::M, v::T) where {M <: AbstractMultilayerGraph{T} } where { T <: Integer}
381
- outneighbors(mg::M, v::T) where {M <: AbstractMultilayerGraph{T} } where { T <: Integer}
382
- outneighbors(mg::M, v::T) where {M <: AbstractMultilayerGraph{T} } where { T <: Integer}
385
+ outneighbors(mg::M, v::T) where {T, M<:AbstractMultilayerGraph{T}}
383
386
neighbors(mg::AbstractMultilayerGraph, mv::MultilayerVertex)
384
387
edgetype(::M) where {T,U,M<:AbstractMultilayerGraph{T,U}}
385
388
has_edge(mg::M, src::T, dst::T) where { T, M <: AbstractMultilayerUGraph{T}}
@@ -399,8 +402,4 @@ AbstractMatrixRepresentation{T,U}
399
402
``` @docs
400
403
IsWeighted{X}
401
404
IsMeta{X}
402
- ```
403
-
404
-
405
- ``` @docs
406
- ```
405
+ ```
0 commit comments