dimod.generators.random.ran_r¶
-
ran_r(*args, **kwargs)[source]¶ Generate an Ising model for a RANr problem.
In RANr problems all linear biases are zero and quadratic values are uniformly selected integers between -r to r, excluding zero. This class of problems is relevant for binary quadratic models (BQM) with spin variables (Ising models).
This generator of RANr problems follows the definition in [Kin2015].
Parameters: - r (int) – Order of the RANr problem.
- graph (int/tuple[nodes, edges]/list[edge]/
Graph) – The graph to build the bqm 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. - cls (
BinaryQuadraticModel) – Binary quadratic model class to build from. - seed (int, optional, default=None) – Random seed.
Returns: Examples:
>>> import networkx as nx >>> K_7 = nx.complete_graph(7) >>> bqm = dimod.generators.random.ran_r(1, K_7)
[Kin2015] James King, Sheir Yarkoni, Mayssam M. Nevisi, Jeremy P. Hilton, Catherine C. McGeoch. Benchmarking a quantum annealing processor with the time-to-target metric. https://arxiv.org/abs/1508.05087