Source code for dimod.generators.fcl

# -*- coding: utf-8 -*-
# Copyright 2018 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.
#
# ================================================================================================
from __future__ import absolute_import

import itertools

import numpy as np
import numpy.random

from dimod.binary_quadratic_model import BinaryQuadraticModel
from dimod.decorators import graph_argument
from dimod.vartypes import SPIN

__all__ = ['frustrated_loop']


[docs]@graph_argument('graph') def frustrated_loop(graph, num_cycles, R=float('inf'), cycle_predicates=tuple(), max_failed_cycles=100, seed=None): """Generate a frustrated loop problem. A (generic) frustrated loop (FL) problem is a sum of Hamiltonians, each generated from a single "good" loop. 1. Generate a loop by random walking on the support graph. 2. If the cycle is "good" (according to provided predicates), continue, else go to 1. 3. Choose one edge of the loop to be anti-ferromagnetic; all other edges are ferromagnetic. 4. Add the loop's coupler values to the FL problem. If at any time the magnitude of a coupler in the FL problem exceeds a given precision `R`, remove that coupler from consideration in the loop generation procedure. This is a generic generator of FL problems that encompasses both the original FL problem definition from [#HJARTL]_ and the limited FL problem definition from [#KLH]_ Args: graph (int/tuple[nodes, edges]/list[edge]/:obj:`~networkx.Graph`): The graph to build the frustrated loops on. Either an integer n, interpreted as a complete graph of size n, a nodes/edges pair, a list of edges or a NetworkX graph. num_cyles (int): Desired number of frustrated cycles. R (int, optional, default=inf): Maximum interaction weight. cycle_predicates (tuple[function], optional): An iterable of functions, which should accept a cycle and return a bool. max_failed_cycles (int, optional, default=100): Maximum number of failures to find a cycle before terminating. seed (int, optional, default=None): Random seed. .. [#HJARTL] Hen, I., J. Job, T. Albash, T.F. Rønnow, M. Troyer, D. Lidar. Probing for quantum speedup in spin glass problems with planted solutions. https://arxiv.org/abs/1502.01663v2 .. [#KLH] King, A.D., T. Lanting, R. Harris. Performance of a quantum annealer on range-limited constraint satisfaction problems. https://arxiv.org/abs/1502.02098 """ nodes, edges = graph if num_cycles <= 0: raise ValueError("num_cycles should be a positive integer") if R <= 0: raise ValueError("R should be a positive integer") if max_failed_cycles <= 0: raise ValueError("max_failed_cycles should be a positive integer") if seed is None: seed = numpy.random.randint(2**32, dtype=np.uint32) r = numpy.random.RandomState(seed) # G = nx.Graph(edges) # J = collections.defaultdict(int) adj = {v: set() for v in nodes} for u, v in edges: if u in adj: adj[u].add(v) else: adj[u] = {v} if v in adj: adj[v].add(u) else: adj[v] = {u} bqm = BinaryQuadraticModel({v: 0.0 for v in nodes}, {edge: 0.0 for edge in edges}, 0.0, SPIN) failed_cycles = 0 good_cycles = 0 while good_cycles < num_cycles and failed_cycles < max_failed_cycles: cycle = _random_cycle(adj, r) # if the cycle failed or it is otherwise invalid, mark as failed and continue if cycle is None or not all(pred(cycle) for pred in cycle_predicates): failed_cycles += 1 continue # If its a good cycle, modify J with it. good_cycles += 1 cycle_J = {(cycle[i - 1], cycle[i]): -1. for i in range(len(cycle))} # randomly select an edge and flip it idx = r.randint(len(cycle)) cycle_J[(cycle[idx - 1], cycle[idx])] *= -1. # update the bqm bqm.add_interactions_from(cycle_J) for u, v in cycle_J: if abs(bqm.adj[u][v]) >= R: adj[u].remove(v) adj[v].remove(u) if good_cycles < num_cycles: raise RuntimeError return bqm
def _random_cycle(adj, random_state): """Find a cycle using a random graph walk.""" # step through idx values in adj to pick a random one, random.choice does not work on dicts n = random_state.randint(len(adj)) for idx, v in enumerate(adj): if idx == n: break start = v walk = [start] visited = {start: 0} while True: if len(walk) > 1: # as long as we don't step back one we won't have any repeated edges previous = walk[-2] neighbors = [u for u in adj[walk[-1]] if u != previous] else: neighbors = list(adj[walk[-1]]) if not neighbors: # we've walked into a dead end return None # get a random neighbor u = random_state.choice(neighbors) if u in visited: # if we've seen this neighbour, then we have a cycle starting from it return walk[visited[u]:] else: # add to walk and keep moving walk.append(u) visited[u] = len(visited)