-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdigraph.py
629 lines (568 loc) · 23.2 KB
/
digraph.py
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
from collections import defaultdict
from copy import deepcopy
import graphblas as gb
from graphblas import Matrix, binary, replace, select, unary
import graphblas_algorithms as ga
from . import _utils
from ._caching import get_reduce_to_scalar, get_reduce_to_vector
from .graph import (
Graph,
get_A,
get_diag,
get_iso_value,
get_offdiag,
has_negative_diagonal,
has_negative_edgesm,
has_negative_edgesp,
is_iso,
)
def get_AT(G, mask=None):
"""``A.T``."""
A = G._A
cache = G._cache
if "AT" not in cache:
cache["AT"] = A.T.new()
return cache["AT"]
def get_Up(G, mask=None):
"""``select.triu(A)``."""
A = G._A
cache = G._cache
if "U+" not in cache:
if "U-" in cache and not G.get_property("has_self_edges"):
cache["U+"] = cache["U-"]
else:
cache["U+"] = select.triu(A).new(name="U+")
if "has_self_edges" not in cache:
if "U-" in cache:
cache["has_self_edges"] = cache["U+"].nvals > cache["U-"].nvals
elif "L+" in cache:
cache["has_self_edges"] = cache["U+"].nvals + cache["L+"].nvals > A.nvals
if cache.get("has_self_edges") is False:
cache["U-"] = cache["U+"]
return cache["U+"]
def get_Lp(G, mask=None):
"""``select.tril(A)``."""
A = G._A
cache = G._cache
if "L+" not in cache:
if "L-" in cache and not G.get_property("has_self_edges"):
cache["L+"] = cache["L-"]
else:
cache["L+"] = select.tril(A).new(name="L+")
if "has_self_edges" not in cache:
if "L-" in cache:
cache["has_self_edges"] = cache["L+"].nvals > cache["L-"].nvals
elif "U+" in cache:
cache["has_self_edges"] = cache["L+"].nvals + cache["U+"].nvals > A.nvals
if cache.get("has_self_edges") is False:
cache["L-"] = cache["L+"]
return cache["L+"]
def get_Um(G, mask=None):
"""``select.triu(A, 1)``."""
A = G._A
cache = G._cache
if "U-" not in cache:
if "U+" in cache:
if cache.get("has_self_edges") is False:
cache["U-"] = cache["U+"]
else:
cache["U-"] = select.triu(cache["U+"], 1).new(name="U-")
elif "offdiag" in cache:
cache["U-"] = select.triu(cache["offdiag"], 1).new(name="U-")
else:
cache["U-"] = select.triu(A, 1).new(name="U-")
if "has_self_edges" not in cache:
if "U+" in cache:
cache["has_self_edges"] = cache["U-"].nvals < cache["U+"].nvals
elif "L-" in cache:
cache["has_self_edges"] = cache["U-"].nvals + cache["L-"].nvals < A.nvals
if cache.get("has_self_edges") is False:
cache["U+"] = cache["U-"]
return cache["U-"]
def get_Lm(G, mask=None):
"""``select.tril(A, -1)``."""
A = G._A
cache = G._cache
if "L-" not in cache:
if "L+" in cache:
if cache.get("has_self_edges") is False:
cache["L-"] = cache["L+"]
else:
cache["L-"] = select.tril(cache["L+"], -1).new(name="L-")
elif "offdiag" in cache:
cache["L-"] = select.tril(cache["offdiag"], -1).new(name="L-")
else:
cache["L-"] = select.tril(A, -1).new(name="L-")
if "has_self_edges" not in cache:
if "L+" in cache:
cache["has_self_edges"] = cache["L-"].nvals < cache["L+"].nvals
elif "U-" in cache:
cache["has_self_edges"] = cache["L-"].nvals + cache["U-"].nvals < A.nvals
if cache.get("has_self_edges") is False:
cache["L+"] = cache["L-"]
return cache["L-"]
def get_recip_degreesp(G, mask=None):
"""``pair(A & A.T).reduce_rowwise()``."""
A = G._A
cache = G._cache
AT = cache.get("AT", A.T)
if mask is not None:
if "recip_degrees+" in cache:
return cache["recip_degrees+"].dup(mask=mask)
if cache.get("has_self_edges") is False and "recip_degrees-" in cache:
cache["recip_degrees+"] = cache["recip_degrees-"]
return cache["recip_degrees-"].dup(mask=mask)
if "recip_degrees-" in cache and "diag" in cache:
return (unary.one(cache["diag"]) + cache["recip_degrees-"]).new(
mask=mask, name="recip_degrees+"
)
if "recip_degrees-" in cache and not G.get_property("has_self_edges"):
return cache["recip_degrees-"].dup(mask=mask)
return binary.pair(A & AT).reduce_rowwise().new(mask=mask, name="recip_degrees+")
if "recip_degrees+" not in cache:
if cache.get("has_self_edges") is False and "recip_degrees-" in cache:
cache["recip_degrees+"] = cache["recip_degrees-"]
elif "recip_degrees-" in cache and "diag" in cache:
cache["recip_degrees+"] = (unary.one(cache["diag"]) + cache["recip_degrees-"]).new(
name="recip_degrees+"
)
elif "recip_degrees-" in cache and not G.get_property("has_self_edges"):
cache["recip_degrees+"] = cache["recip_degrees-"]
else:
cache["recip_degrees+"] = (
binary.pair(A & AT).reduce_rowwise().new(name="recip_degrees+")
)
if (
"has_self_edges" not in cache
and "recip_degrees-" in cache
and cache["recip_degrees-"].nvals != cache["recip_degrees+"].nvals
):
cache["has_self_edges"] = True
elif cache.get("has_self_edges") is False:
cache["recip_degrees-"] = cache["recip_degrees+"]
return cache["recip_degrees+"]
def get_recip_degreesm(G, mask=None):
"""``C = select.offdiag(A) ; pair(C & C.T).reduce_rowwise()``."""
A = G._A
cache = G._cache
if "AT" in cache:
AT = cache["AT"]
elif "offdiag" in cache:
AT = cache["offdiag"].T
else:
AT = A.T
if mask is not None:
if "recip_degrees-" in cache:
return cache["recip_degrees-"].dup(mask=mask)
if cache.get("has_self_edges") is False and "recip_degrees+" in cache:
cache["recip_degrees-"] = cache["recip_degrees+"]
return cache["recip_degrees-"].dup(mask=mask)
if "recip_degrees+" in cache and "diag" in cache:
rv = binary.minus(cache["recip_degrees+"] | unary.one(cache["diag"])).new(
mask=mask, name="recip_degrees-"
)
rv(rv.V, replace) << rv # drop 0s
return rv
if not G.get_property("has_self_edges"):
return G.get_property("recip_degrees+", mask=mask)
if "offdiag" in cache:
return (
binary.pair(cache["offdiag"] & AT)
.reduce_rowwise()
.new(mask=mask, name="recip_degrees-")
)
if "L-" in cache and "U-" in cache:
return (
binary.pair(cache["L-"] & AT).reduce_rowwise().new(mask=mask)
+ binary.pair(cache["U-"] & AT).reduce_rowwise().new(mask=mask)
).new(name="recip_degrees-")
diag = G.get_property("diag", mask=mask)
overlap = binary.pair(A & AT).reduce_rowwise().new(mask=mask)
rv = binary.minus(overlap | unary.one(diag)).new(name="recip_degrees-")
rv(rv.V, replace) << rv # drop 0s
return rv
if "recip_degrees-" not in cache:
if cache.get("has_self_edges") is False and "recip_degrees+" in cache:
cache["recip_degrees-"] = cache["recip_degrees+"]
elif "recip_degrees+" in cache and "diag" in cache:
rv = binary.minus(cache["recip_degrees+"] | unary.one(cache["diag"])).new(
name="recip_degrees-"
)
rv(rv.V, replace) << rv # drop 0s
cache["recip_degrees-"] = rv
elif not G.get_property("has_self_edges"):
cache["recip_degrees-"] = G.get_property("recip_degrees+")
elif "offdiag" in cache:
cache["recip_degrees-"] = (
binary.pair(cache["offdiag"] & AT).reduce_rowwise().new(name="recip_degrees-")
)
elif "L-" in cache and "U-" in cache:
cache["recip_degrees-"] = (
binary.pair(cache["L-"] & AT).reduce_rowwise().new()
+ binary.pair(cache["U-"] & AT).reduce_rowwise().new()
).new(name="recip_degrees-")
else:
diag = G.get_property("diag")
overlap = binary.pair(A & AT).reduce_rowwise().new()
rv = binary.minus(overlap | unary.one(diag)).new(name="recip_degrees-")
rv(rv.V, replace) << rv # drop 0s
cache["recip_degrees-"] = rv
if (
"has_self_edges" not in cache
and "recip_degrees+" in cache
and cache["recip_degrees-"].nvals != cache["recip_degrees+"].nvals
):
cache["has_self_edges"] = True
elif cache.get("has_self_edges") is False:
cache["recip_degrees+"] = cache["recip_degrees-"]
return cache["recip_degrees-"]
def get_total_degreesp(G, mask=None):
"""``A.reduce_rowwise(agg.count) + A.reduce_columnwise(agg.count)``."""
cache = G._cache
if mask is not None:
if "total_degrees+" in cache:
return cache["total_degrees+"].dup(mask=mask)
if cache.get("has_self_edges") is False and "total_degrees-" in cache:
cache["total_degrees+"] = cache["total_degrees-"]
return cache["total_degrees+"].dup(mask=mask)
return (
G.get_property("row_degrees+", mask=mask) + G.get_property("column_degrees+", mask=mask)
).new(name="total_degrees+")
if "total_degrees+" not in cache:
if cache.get("has_self_edges") is False and "total_degrees-" in cache:
cache["total_degrees+"] = cache["total_degrees-"]
else:
cache["total_degrees+"] = (
G.get_property("row_degrees+") + G.get_property("column_degrees+")
).new(name="total_degrees+")
if (
"has_self_edges" not in cache
and "total_degrees-" in cache
and cache["total_degrees-"].nvals != cache["total_degrees+"].nvals
):
cache["has_self_edges"] = True
elif cache.get("has_self_edges") is False:
cache["total_degrees-"] = cache["total_degrees+"]
return cache["total_degrees+"]
def get_total_degreesm(G, mask=None):
"""``C = select.offdiag(A) ; C.reduce_rowwise(agg.count) + C.reduce_columnwise(agg.count)``."""
cache = G._cache
if mask is not None:
if "total_degrees-" in cache:
return cache["total_degrees-"].dup(mask=mask)
if cache.get("has_self_edges") is False and "total_degrees+" in cache:
cache["total_degrees-"] = cache["total_degrees+"]
return cache["total_degrees-"].dup(mask=mask)
return (
G.get_property("row_degrees-", mask=mask) + G.get_property("column_degrees-", mask=mask)
).new(name="total_degrees-")
if "total_degrees-" not in cache:
if cache.get("has_self_edges") is False and "total_degrees+" in cache:
cache["total_degrees-"] = cache["total_degrees+"]
else:
cache["total_degrees-"] = (
G.get_property("row_degrees-") + G.get_property("column_degrees-")
).new(name="total_degrees-")
if (
"has_self_edges" not in cache
and "total_degrees+" in cache
and cache["total_degrees-"].nvals != cache["total_degrees+"].nvals
):
cache["has_self_edges"] = True
elif cache.get("has_self_edges") is False:
cache["total_degrees+"] = cache["total_degrees-"]
return cache["total_degrees-"]
def get_total_recipp(G, mask=None):
"""``pair(A & A.T).reduce_scalar()``."""
A = G._A
cache = G._cache
if "total_recip+" not in cache:
if "total_recip-" in cache and cache.get("has_self_edges") is False:
cache["total_recip+"] = cache["total_recip-"]
elif "recip_degrees+" in cache:
cache["total_recip+"] = cache["recip_degrees+"].reduce().get(0)
else:
AT = cache.get("AT", A.T)
cache["total_recip+"] = binary.pair(A & AT).reduce_scalar().get(0)
if "has_self_edges" not in cache and "total_recip-" in cache:
cache["has_self_edges"] = cache["total_recip+"] > cache["total_recip-"]
if cache.get("has_self_edges") is False:
cache["total_recip-"] = cache["total_recip+"]
return cache["total_recip+"]
def get_total_recipm(G, mask=None):
"""``C = select.offdiag(A) ; pair(C & C.T).reduce_scalar()``."""
cache = G._cache
if "total_recip-" not in cache:
if "total_recip+" in cache and cache.get("has_self_edges") is False:
cache["total_recip-"] = cache["total_recip+"]
else:
cache["total_recip-"] = G.get_property("recip_degrees-").reduce().get(0)
if "has_self_edges" not in cache and "total_recip+" in cache:
cache["has_self_edges"] = cache["total_recip+"] > cache["total_recip-"]
if cache.get("has_self_edges") is False:
cache["total_recip+"] = cache["total_recip-"]
return cache["total_recip-"]
def has_self_edges(G, mask=None):
"""``A.diag().nvals > 0``."""
A = G._A
cache = G._cache
if "has_self_edges" not in cache:
if "offdiag" in cache:
cache["has_self_edges"] = A.nvals > cache["offdiag"].nvals
elif "L+" in cache and ("L-" in cache or "U+" in cache):
if "L-" in cache:
cache["has_self_edges"] = cache["L-"].nvals < cache["L+"].nvals
else:
cache["has_self_edges"] = cache["L+"].nvals + cache["U+"].nvals > A.nvals
elif "U-" in cache and ("U+" in cache or "L-" in cache):
if "U+" in cache:
cache["has_self_edges"] = cache["U-"].nvals < cache["U+"].nvals
else:
cache["has_self_edges"] = cache["U-"].nvals + cache["L-"].nvals < A.nvals
elif cache.get("has_negative_diagonal") is True:
cache["has_self_edges"] = True
elif "total_recip-" in cache and "total_recip+" in cache:
cache["has_self_edges"] = cache["total_recip+"] > cache["total_recip-"]
elif "row_degrees-" in cache and "row_degrees+" in cache:
cache["has_self_edges"] = not cache["row_degrees-"].isequal(cache["row_degrees+"])
elif "column_degrees-" in cache and "column_degrees+" in cache:
cache["has_self_edges"] = not cache["column_degrees-"].isequal(cache["column_degrees+"])
elif "total_degrees-" in cache and "total_degrees+" in cache:
cache["has_self_edges"] = not cache["total_degrees-"].isequal(cache["total_degrees+"])
elif "recip_degrees-" in cache and "recip_degrees+" in cache:
cache["has_self_edges"] = not cache["recip_degrees-"].isequal(cache["recip_degrees+"])
elif "row_degrees-" in cache:
cache["has_self_edges"] = cache["row_degrees-"].reduce().get(0) < A.nvals
elif "column_degrees-" in cache:
cache["has_self_edges"] = cache["column_degrees-"].reduce().get(0) < A.nvals
elif "total_degrees-" in cache:
cache["has_self_edges"] = cache["total_degrees-"].reduce().get(0) < 2 * A.nvals
elif "total_degrees+" in cache:
cache["has_self_edges"] = cache["total_degrees+"].reduce().get(0) > 2 * A.nvals
else:
G.get_property("diag")
return cache["has_self_edges"]
def to_directed_graph(G, weight=None, dtype=None):
# We should do some sanity checks here to ensure we're returning a valid directed graph
if isinstance(G, DiGraph):
return G
try:
return DiGraph(G)
except TypeError:
pass
try:
import networkx as nx
if isinstance(G, nx.DiGraph):
return DiGraph.from_networkx(G, weight=weight, dtype=dtype)
except ImportError:
pass
raise TypeError
def to_graph(G, weight=None, dtype=None):
if isinstance(G, (DiGraph, ga.Graph)):
return G
try:
# Should we check if it can be undirected?
return DiGraph(G)
except TypeError:
pass
try:
import networkx as nx
if isinstance(G, nx.DiGraph):
return DiGraph.from_networkx(G, weight=weight, dtype=dtype)
if isinstance(G, nx.Graph):
return ga.Graph.from_networkx(G, weight=weight, dtype=dtype)
except ImportError:
pass
raise TypeError
class AutoDict(dict):
def __missing__(self, key):
# Automatically compute keys such as "plus_rowwise-" and "max_element+"
if key[-1] in {"-", "+"}:
keybase = key[:-1]
if keybase.endswith("_rowwise"):
opname = keybase[: -len("_rowwise")]
methodname = "reduce_rowwise"
elif keybase.endswith("_columnwise"):
opname = keybase[: -len("_columnwise")]
methodname = "reduce_columnwise"
elif keybase.endswith("_element"):
opname = keybase[: -len("_element")]
methodname = "reduce_scalar"
else:
raise KeyError(key)
if methodname == "reduce_scalar":
get_reduction = get_reduce_to_scalar(key, opname)
else:
get_reduction = get_reduce_to_vector(key, opname, methodname)
elif key.endswith("_diagonal"):
# e.g., min_diagonal
opname = key[: -len("_diagonal")]
get_reduction = get_reduce_to_scalar(key, opname)
else:
raise KeyError(key)
self[key] = get_reduction
return get_reduction
class DiGraph(Graph):
__networkx_backend__ = "graphblas"
__networkx_plugin__ = "graphblas"
# "-" properties ignore self-edges, "+" properties include self-edges
# Ideally, we would have "max_rowwise+" come before "max_element+".
_property_priority = defaultdict(
lambda: DiGraph._property_priority["has_self_edges"] - 0.5,
{
key: i
for i, key in enumerate(
[
"A",
"AT",
"offdiag",
"U+",
"L+",
"U-",
"L-",
"diag",
"count_rowwise+", # row_degrees
"count_columnwise+", # column_degrees
"count_rowwise-",
"count_columnwise-",
"recip_degrees+",
"recip_degrees-",
"total_degrees+",
"total_degrees-",
"total_recip+", # scalar; I don't like this name
"total_recip-", # scalar; I don't like this name
"min_diagonal",
"min_element+",
"min_element-",
"has_negative_diagonal",
"has_negative_edges-",
"has_negative_edges+",
"has_self_edges",
]
)
},
)
_get_property = AutoDict(
{
"A": get_A,
"AT": get_AT,
"offdiag": get_offdiag,
"U+": get_Up,
"L+": get_Lp,
"U-": get_Um,
"L-": get_Lm,
"diag": get_diag,
"recip_degrees+": get_recip_degreesp,
"recip_degrees-": get_recip_degreesm,
"total_degrees+": get_total_degreesp,
"total_degrees-": get_total_degreesm,
"total_recip+": get_total_recipp,
"total_recip-": get_total_recipm,
"is_iso": is_iso,
"iso_value": get_iso_value,
"has_negative_diagonal": has_negative_diagonal,
"has_negative_edges-": has_negative_edgesm,
"has_negative_edges+": has_negative_edgesp,
"has_self_edges": has_self_edges,
}
)
_cache_aliases = {
"row_degrees+": "count_rowwise+",
"column_degrees+": "count_columnwise+",
"row_degrees-": "count_rowwise-",
"column_degrees-": "count_columnwise-",
}
graph_attr_dict_factory = dict
def __init__(self, incoming_graph_data=None, *, key_to_id=None, **attr):
if incoming_graph_data is not None:
# Does not copy if A is a Matrix!
A = gb.core.utils.ensure_type(incoming_graph_data, Matrix)
if A.nrows != A.ncols:
raise ValueError(f"Adjacency matrix must be square; got {A.nrows} x {A.ncols}")
else:
A = Matrix()
self.graph_attr_dict_factory = self.graph_attr_dict_factory
self.graph = self.graph_attr_dict_factory() # dictionary for graph attributes
self.graph.update(attr)
# Graphblas-specific properties
self._A = A
if key_to_id is None:
key_to_id = {i: i for i in range(A.nrows)}
self._key_to_id = key_to_id
self._id_to_key = None
self._cache = {}
# Graphblas-specific methods
from_networkx = classmethod(_utils.from_networkx)
id_to_key = property(_utils.id_to_key)
get_property = _utils.get_property
get_properties = _utils.get_properties
dict_to_vector = _utils.dict_to_vector
list_to_vector = _utils.list_to_vector
list_to_mask = _utils.list_to_mask
list_to_ids = _utils.list_to_ids
list_to_keys = _utils.list_to_keys
matrix_to_dicts = _utils.matrix_to_dicts
matrix_to_nodenodemap = _utils.matrix_to_nodenodemap
matrix_to_vectornodemap = _utils.matrix_to_vectornodemap
set_to_vector = _utils.set_to_vector
to_networkx = _utils.to_networkx
vector_to_dict = _utils.vector_to_dict
vector_to_list = _utils.vector_to_list
vector_to_nodemap = _utils.vector_to_nodemap
vector_to_nodeset = _utils.vector_to_nodeset
vector_to_set = _utils.vector_to_set
_cacheit = _utils._cacheit
renumber_key_to_id = _utils.renumber_key_to_id
# NetworkX methods
def to_directed_class(self):
return DiGraph
def to_undirected_class(self):
return ga.Graph
@property
def name(self):
return self.graph.get("name", "")
@name.setter
def name(self, s):
self._A.name = s
self.graph["name"] = s
@property
def matrix(self):
return self._A
def __iter__(self):
return iter(self._key_to_id)
def __contains__(self, n):
try:
return n in self._key_to_id
except TypeError:
return False
def __len__(self):
return self._A.nrows
def number_of_nodes(self):
return self._A.nrows
def order(self):
return self._A.nrows
def is_multigraph(self):
return False
def is_directed(self):
return True
def to_undirected(self, reciprocal=False, as_view=False, *, name=None):
if as_view:
raise NotImplementedError("`as_vew=True` is not implemented in `G.to_undirected`")
A = self._A
if reciprocal:
B = binary.any(A & A.T).new(name=name)
else:
B = binary.any(A | A.T).new(name=name)
return Graph(B, key_to_id=self._key_to_id)
def reverse(self, copy=True):
# We could even reuse many of the cached values
A = self._A.T # This probably mostly works, but does not yet support assignment
if copy:
A = A.new()
rv = type(self)(A, key_to_id=self._key_to_id)
rv.graph.update(deepcopy(self.graph))
return rv
class MultiDiGraph(DiGraph):
def is_multigraph(self):
return True
__all__ = ["DiGraph", "MultiDiGraph"]