Source code for dwave.system.utilities

# Copyright 2019 D-Wave Systems Inc.
#
#    Licensed under the Apache License, Version 2.0 (the "License");
#    you may not use this file except in compliance with the License.
#    You may obtain a copy of the License at
#
#        http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.
#
# =============================================================================
"""Utility functions."""

import networkx as nx

__all__ = ['common_working_graph']


[docs]def common_working_graph(graph0, graph1): """Creates a graph using the common nodes and edges of two given graphs. This function finds the edges and nodes with common labels. Note that this not the same as finding the greatest common subgraph with isomorphisms. Args: graph0: (dict[dict]/:obj:`~networkx.Graph`) A NetworkX graph or a dictionary of dictionaries adjacency representation. graph1: (dict[dict]/:obj:`~networkx.Graph`) A NetworkX graph or a dictionary of dictionaries adjacency representation. Returns: :obj:`~networkx.Graph`: A graph with the nodes and edges common to both input graphs. Examples: This example creates a graph that represents a quarter (4 by 4 Chimera tiles) of a particular D-Wave system's working graph. >>> import dwave_networkx as dnx >>> from dwave.system import DWaveSampler, common_working_graph ... >>> sampler = DWaveSampler(solver={'qpu': True}) >>> C4 = dnx.chimera_graph(4) # a 4x4 lattice of Chimera tiles >>> c4_working_graph = common_working_graph(C4, sampler.adjacency) """ G = nx.Graph() G.add_nodes_from(v for v in graph0 if v in graph1) G.add_edges_from((u, v) for u in graph0 for v in graph0[u] if v in graph1 and u in graph1[v]) return(G)