rustworkx.generators.directed_heavy_hex_graph#
- directed_heavy_hex_graph(d, bidirectional=False, multigraph=True)#
Generate a directed heavy hex graph.
Fig. 2 of https://arxiv.org/abs/1907.09528 An ASCII diagram of the graph is given by:
... D-S-D D ... | | | ...-F F-S-F ... | | | ... D D D ... | | | ... F-S-F F-... | | | ......... | | | ... D D D ... | | | ...-F F-S-F ... | | | ... D D D ... | | | ... F-S-F F-... | | | ......... | | | ... D D D ... | | | ...-F F-S-F ... | | | ... D D D ... | | | ... F-S-F F-... | | | ... D D-S-D ...
- Parameters:
d (int) – distance of the code. If
d
is set to1
aPyDiGraph
with a single node will be returned.d
must be an odd number.multigraph (bool) – When set to
False
the outputPyDiGraph
object will not be not be a multigraph and won’t allow parallel edges to be added. Instead calls which would create a parallel edge will update the existing edge.
- Returns:
The generated heavy hex directed graph
- Return type:
- Raises:
IndexError – If d is even.
import rustworkx.generators from rustworkx.visualization import graphviz_draw graph = rustworkx.generators.directed_heavy_hex_graph(3) graphviz_draw(graph, lambda node: dict( color='black', fillcolor='lightblue', style='filled'))