Standard structure for Graphs
Working with graphs is an essential part of computations with the Rydberg analog model. For that reason, QoolQit implements a specific DataGraph
class to serve as the basis of all graph creation and manipulation, and setting the logic related to unit-disk graphs. QoolQit integrates with NetworkX (external) for many operations, and the DataGraph
inherits from nx.Graph
.
Basic construction
Section titled “Basic construction”The DataGraph
is an undirected graph with no self loops. The default way to instantiate a DataGraph
is with a set of edges.
from qoolqit import DataGraph
edges = [(0, 1), (1, 2), (2, 3), (3, 0)]graph = DataGraph(edges)
Later in the graph constructors section we also describe how to construct graphs from sets of coordinates, or with built-in constructors.
As with any NetworkX graph, the set of nodes and edges can be accessed:
print(graph.nodes)
[0, 1, 2, 3]
print(graph.edges)
[(0, 1), (0, 3), (1, 2), (2, 3)]
These are the standard NodeView
and EdgeView
objects from NetworkX, and thus can be used add and access node and edge attributes.
Drawing
Section titled “Drawing”We can draw the graph with graph.draw()
, which calls draw_networkx
(external). As such, optional arguments can be passed that will be fed to NetworkX.
import networkx as nx
pos = nx.circular_layout(graph)
graph.draw(pos = pos)
Coordinates and distances
Section titled “Coordinates and distances”One convenient property added by QoolQit is the sorted_edges
, which guarantees that the indices in each edge tuple are always provided as . This condition is not guaranteed by calling the NetworkX property graph.edges
, but is sometimes useful.
print(graph.sorted_edges)
{(0, 1), (1, 2), (0, 3), (2, 3)}
Another convenient property is accessing the pairs of all nodes in the graph, which again follow the convention of .
print(graph.all_node_pairs)
{(0, 1), (1, 2), (0, 3), (2, 3), (0, 2), (1, 3)}
In QoolQit a set of attributes that takes center stage when dealing with graphs are the node coordinates. These are essential for the Rydberg analog model as they directly translate to qubit positions that define the interaction term in the Hamiltonian. This behaviour has a close connection with the study of unit-disk graphs, where node coordinates are also essential. The coordinates can be set directly in the respective property:
# The list must have the same length as the number of nodes:graph.coords = [(-0.5, -0.5), (-0.5, 0.5), (0.5, 0.5), (0.5, -0.5)]
graph.coords
{0: (-0.5, -0.5), 1: (-0.5, 0.5), 2: (0.5, 0.5), 3: (0.5, -0.5)}
# Compute for all node pairsgraph.distances()
# Compute only for connected nodesgraph.distances(graph.sorted_edges)
# Compute for a specific set of node pairsgraph.distances([(0, 1), (0, 2)])
{(0, 1): 1.0, (1, 2): 1.0, (0, 3): 1.0, (2, 3): 1.0, (0, 2): 1.4142135623730951, (1, 3): 1.4142135623730951}{(0, 1): 1.0, (1, 2): 1.0, (0, 3): 1.0, (2, 3): 1.0}{(0, 1): 1.0, (0, 2): 1.4142135623730951}
Furthermore, when calling graph.draw()
the coordinate information will be automatically used.
graph.draw()
Graph coordinates can be rescaled. The rescale_coords
method only accepts a keyword argument,
which must be either scaling
or spacing
.
# Rescale coordinates by a constant factorgraph.rescale_coords(scaling = 2.0)
# Rescale coordinates by setting the minimum spacinggraph.rescale_coords(spacing = 1.0)
The minimum and maximum distance can be directly checked.
# Compute for all node pairsgraph.min_distance()graph.max_distance()
# Compute only for connected nodesgraph.min_distance(connected = True)
# Compute only for disconnected nodesgraph.min_distance(connected = False)
Unit-disk graphs
Section titled “Unit-disk graphs”Working with node coordinates and distances is an essential part of dealing with unit-disk graphs.
In other words, a unit-disk graph for a radius is the graph where the set of edges corresponds to the intersections of disks of radius centered at each node position in Euclidean space.
For a DataGraph
with a set of node coordinates, we can check if it is a valid unit-disk graph
graph.is_ud_graph()
True
This method checks that graph.max_distance(connected = True)
is smaller than graph.min_distance(connected = False)
. If this is True
, then for every value of inside that interval the unit-disk condition is met. We can easily check this.
First, we can check the set of edges given by the intersection of unit disks:
# For a small value no disks intersect, the set is emptyud_edges = graph.ud_edges(radius = 0.1)
# For a large enough value all disks intersectud_edges = graph.ud_edges(radius = 50.0)
assert ud_edges == graph.all_node_pairs
Radius = 0.1: set()Radius = 50.0: {(0, 1), (1, 2), (0, 3), (2, 3), (0, 2), (1, 3)}
Now, we can randomly pick a value or matching the unit-disk condition and verify that the set of unit-disk edges exactly match the set of edges in the graph. The possible range of values is directly available with the ud_radius_range()
method.
import numpy as np
low, high = graph.ud_radius_range()
R = np.random.uniform(low, high)
print(graph.ud_edges(radius = R) == graph.sorted_edges)
True
We can also reset the set of edges on a graph to be equal to the set of unit-disk edges for a given radius with graph.set_ud_edges(radius = R)
. For this example we will not run this line, but we show it later when constructing a graph from a set of coordinates.
Node and edge weights
Section titled “Node and edge weights”Another two important attributes are node weights and edge weights:
import random
graph.node_weights = {i: random.random() for i in graph.nodes}graph.edge_weights = {edge: random.random() for edge in graph.sorted_edges}
If the graph does not have these attributes, the dictionaries will still be returned with None
in place of the value.
A set of boolean properties allows quickly checking if the graph has coordinates or weights. It only returns True
if there is a value set for every node / edge in the graph.
assert graph.has_coordsassert graph.has_node_weightsassert graph.has_edge_weights
Graph constructors
Section titled “Graph constructors”Class constructors can help you create a variety of graphs. A useful constructor is starting from a set of coordinates. By default, it will create an empty set of edges, but we can use the set_ud_edges
method to specify the edges as the unit-disk intersections.
from qoolqit import DataGraph
coords = [(-1.0, 0.0), (0.0, 0.0), (1.0, 0.0), (0.0, 1.0), (0.0, -1.0)]
graph = DataGraph.from_coordinates(coords)
assert len(graph.edges) == 0
graph.set_ud_edges(radius = 1.0)
assert len(graph.edges) > 0
graph.draw()
Some geometric graph constructors will already have coordinates by default.
A line graph on n nodes.
graph = DataGraph.line(n = 10, spacing = 1.0)graph.draw()
Circle
Section titled “Circle”A circle graph on n nodes.
graph = DataGraph.circle(n = 10, spacing = 1.0, center = (0.0, 0.0))graph.draw()
Triangular
Section titled “Triangular”A triangular lattice graph with m rows and n columns of triangles.
graph = DataGraph.triangular(m = 2, n = 2, spacing = 1.0)graph.draw()
Hexagonal
Section titled “Hexagonal”A Hexagonal lattice graph with m rows and n columns of hexagons.
graph = DataGraph.hexagonal(m = 2, n = 2, spacing = 1.0)graph.draw()
Heavy-hexagonal
Section titled “Heavy-hexagonal”An Heavy-Hexagonal lattice graph with m rows and n columns of hexagons where each edge is decorated with an additional lattice site.
graph = DataGraph.heavy_hexagonal(m = 2, n = 2, spacing = 1.0)graph.draw()
Random unit-disk
Section titled “Random unit-disk”A random unit-disk graph by uniformly sampling points in area of side L.
graph = DataGraph.random_ud(n = 10, radius = 1.0, L = 2.0)graph.draw()
Other generic constructors are also available which have no information on node coordinates.
Erdős–Rényi
Section titled “Erdős–Rényi”A random Erdős–Rényi graph of n nodes.
graph = DataGraph.random_er(n = 10, p = 0.5, seed = 1)graph.draw()
Loading from a matrix
Section titled “Loading from a matrix”Loading an adjacency matrix into a graph is also possible.
- Given that graphs in QoolQit are undirected, the matrix must be symmetric.
- As in the standard adjacency matrix interpretation, off-diagonal elements are loaded as edge-weights as long as they are non-zero.
- Given that QoolQit does not consider graphs with self-loops, diagonal elements are loaded as node-weights.
import numpy as np
n_nodes = 5data = np.random.rand(n_nodes, n_nodes)
# Matrix must be symmetricdata = data + data.T
graph = DataGraph.from_matrix(data)
assert graph.has_node_weightsassert graph.has_edge_weights
If all values in the diagonal are 0, then no node-weights will be set. Furthermore, edges and edge-weights will only be set for non-zero off-diagonal elements.
# Setting the diagonal to zeronp.fill_diagonal(data, 0.0)
# Removing the value for the pair (1, 2)data[1, 2] = 0.0data[2, 1] = 0.0
graph = DataGraph.from_matrix(data)
# Checking there are no node weights and the edge (1, 2) was not addedassert not graph.has_node_weightsassert (1, 2) not in graph.edges