Skip to content

Commit 364692e

Browse files
Traits based sub ecosystem & NodeAlingnedEdgeColored(Di)Graph (#107)
1 parent 94e0a7a commit 364692e

27 files changed

+1414
-948
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ SimpleWeightedGraphs = "47aef6b3-ad0c-573a-a1e2-d07658019622"
2020
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
2121
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
2222
TensorOperations = "6aa20fa7-93e2-5fca-9bc0-fbd0db3c71a2"
23+
WhereTraits = "c9d4e05b-6318-49cb-9b56-e0e2b0ceadd8"
2324

2425
[compat]
2526
Bijections = "0.1"
2627
DataStructures = "0.18"
2728
Distributions = "0.25"
28-
Graphs = "1.7"
2929
IterTools = "1.4"
3030
MetaGraphs = "0.7"
31-
PrettyTables = "2.2"
3231
OMEinsum = "0.7"
32+
PrettyTables = "2.2"
3333
SimpleTraits = "0.9"
3434
SimpleValueGraphs = "0.4"
3535
SimpleWeightedGraphs = "1.2"

docs/Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
66
MetaGraphs = "626554b9-1ddb-594c-aa3c-2596fe9399a5"
77
MultilayerGraphs = "af984530-d72f-4904-8b81-b992bbbeaf3f"
88
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe"
9+
SimpleTraits = "699a6c99-e7fa-54fc-8d76-47d257e15c1d"
910
SimpleValueGraphs = "b43c691f-cac2-5415-8122-396fe16a49fc"
1011
SimpleWeightedGraphs = "47aef6b3-ad0c-573a-a1e2-d07658019622"

docs/make.jl

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1+
using Revise
2+
using SimpleTraits
13
using Distributions
24
using Graphs
35
using MultilayerGraphs
46
using Documenter
57

8+
#= function end_user_filter(f)
9+
if f isa Function
10+
for method in methods
11+
tv, decls, file, line = arg_decl_parts(m)
12+
13+
end =#
14+
615
DocMeta.setdocmeta!(
716
MultilayerGraphs, :DocTestSetup, :(using MultilayerGraphs); recursive=true
817
)

0 commit comments

Comments
 (0)