-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZooGraph.json
More file actions
88 lines (88 loc) · 2.9 KB
/
ZooGraph.json
File metadata and controls
88 lines (88 loc) · 2.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "graph",
"primary_key": "zooid",
"indices": ["order", "average_degree"],
"skip": ["data", "zooid"],
"noupdate": ["data", "name"],
"fields": {
"average_degree": "Rational",
"average_distance": "Rational",
"chromatic_index": "Integer",
"chromatic_number": "Integer",
"clique_number": "Integer",
"cluster_transitivity": "Rational",
"clustering_average": "Rational",
"connected_components_number": "Integer",
"data": "str",
"diameter": "Integer",
"edge_connectivity": "Integer",
"fractional_chromatic_index": "Integer",
"genus": "Integer",
"girth": "Integer",
"has_multiple_edges": "bool",
"is_arc_transitive": "bool",
"is_asteroidal_triple_free": "bool",
"is_bipartite": "bool",
"is_cartesian_product": "bool",
"is_cayley": "bool",
"is_chordal": "bool",
"is_circulant": "bool",
"is_circular_planar": "bool",
"is_distance_regular": "bool",
"is_distance_transitive": "bool",
"is_edge_transitive": "bool",
"is_eulerian": "bool",
"is_even_hole_free": "bool",
"is_forest": "bool",
"is_gallai_tree": "bool",
"is_hamiltonian": "bool",
"is_interval": "bool",
"is_line_graph": "bool",
"is_long_antihole_free": "bool",
"is_long_hole_free": "bool",
"is_odd_hole_free": "bool",
"is_overfull": "bool",
"is_partial_cube": "bool",
"is_perfect": "bool",
"is_planar": "bool",
"is_prime": "bool",
"is_regular": "bool",
"is_split": "bool",
"is_strongly_regular": "bool",
"is_tree": "bool",
"is_vertex_transitive": "bool",
"lovasz_theta": "RealNumber",
"maximum_average_degree": "Rational",
"name": "str",
"number_of_loops": "Integer",
"odd_girth": "Integer",
"order": "Integer",
"radius": "Integer",
"size": "Integer",
"spanning_trees_count": "Integer",
"szeged_index": "Integer",
"triangles_count": "Integer",
"treewidth": "Integer",
"vertex_connectivity": "Integer",
"wiener_index": "Integer",
"zagreb1_index": "Integer",
"zagreb2_index": "Integer",
"zooid": "ZooObject"
},
"fieldparams": {
"data": ["not_null"],
"name": ["unique"]
},
"aliases": {
"__len__": "order",
"num_edges": "size",
"num_verts": "order"
},
"compute": {"ZooGraph": ["average_degree", "connected_components_number",
"diameter", "girth", "has_multiple_edges",
"is_bipartite", "is_eulerian", "is_forest",
"is_tree", "name", "number_of_loops", "order",
"size"]},
"condition": {},
"default": {}
}