Japanese
言語
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.optimization.applications.ising.common

common module

Functions

get_gset_result(x)

Get graph solution in Gset format from binary string.

parse_gset_format(filename)

Read graph in Gset format from file.

random_graph(n[, weight_range, edge_prob, …])

Generate random Erdos-Renyi graph.

random_number_list(n[, weight_range, …])

Generate a set of positive integers within the given range.

read_numbers_from_file(filename)

Read numbers from a file

sample_most_likely(state_vector)

Compute the most likely binary string from state vector.

get_gset_result(x)[ソース]

Get graph solution in Gset format from binary string.

パラメータ

x (numpy.ndarray) – binary string as numpy array.

戻り値

graph solution in Gset format.

戻り値の型

Dict[int, int]

parse_gset_format(filename)[ソース]

Read graph in Gset format from file.

パラメータ

filename (str) – name of the file.

戻り値

adjacency matrix as a 2D numpy array.

戻り値の型

numpy.ndarray

random_graph(n, weight_range=10, edge_prob=0.3, negative_weight=True, savefile=None, seed=None)[ソース]

Generate random Erdos-Renyi graph.

パラメータ
  • n (int) – number of nodes.

  • weight_range (int) – weights will be smaller than this value, in absolute value. range: [1, weight_range).

  • edge_prob (float) – probability of edge appearing.

  • negative_weight (bool) – allow to have edge with negative weights

  • savefile (str or None) – name of file where to save graph.

  • seed (int or None) – random seed - if None, will not initialize.

戻り値

adjacency matrix (with weights).

戻り値の型

numpy.ndarray

random_number_list(n, weight_range=100, savefile=None, seed=None)[ソース]

Generate a set of positive integers within the given range.

パラメータ
  • n (int) – size of the set of numbers.

  • weight_range (int) – maximum absolute value of the numbers.

  • savefile (str or None) – write numbers to this file.

  • seed (Union(int,None)) – random seed - if None, will not initialize.

戻り値

the list of integer numbers.

戻り値の型

numpy.ndarray

read_numbers_from_file(filename)[ソース]

Read numbers from a file

パラメータ

filename (str) – name of the file.

戻り値

list of numbers as a numpy.ndarray.

戻り値の型

numpy.ndarray

sample_most_likely(state_vector)[ソース]

Compute the most likely binary string from state vector. :param state_vector: state vector or counts. :type state_vector: numpy.ndarray or dict

戻り値

binary string as numpy.ndarray of ints.

戻り値の型

numpy.ndarray