qiskit.optimization.applications.ising.common¶
common module
Functions
Get graph solution in Gset format from binary string. |
|
|
Read graph in Gset format from file. |
|
Generate random Erdos-Renyi graph. |
|
Generate a set of positive integers within the given range. |
|
Read numbers from a file |
|
Compute the most likely binary string from state vector. |
-
get_gset_result
(x)[Quellcode]¶ Get graph solution in Gset format from binary string.
- Parameter
x (numpy.ndarray) – binary string as numpy array.
- Rückgabe
graph solution in Gset format.
- Rückgabetyp
Dict[int, int]
-
parse_gset_format
(filename)[Quellcode]¶ Read graph in Gset format from file.
- Parameter
filename (str) – name of the file.
- Rückgabe
adjacency matrix as a 2D numpy array.
- Rückgabetyp
numpy.ndarray
-
random_graph
(n, weight_range=10, edge_prob=0.3, negative_weight=True, savefile=None, seed=None)[Quellcode]¶ Generate random Erdos-Renyi graph.
- Parameter
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.
- Rückgabe
adjacency matrix (with weights).
- Rückgabetyp
numpy.ndarray
-
random_number_list
(n, weight_range=100, savefile=None, seed=None)[Quellcode]¶ Generate a set of positive integers within the given range.
- Parameter
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.
- Rückgabe
the list of integer numbers.
- Rückgabetyp
numpy.ndarray
-
read_numbers_from_file
(filename)[Quellcode]¶ Read numbers from a file
- Parameter
filename (str) – name of the file.
- Rückgabe
list of numbers as a numpy.ndarray.
- Rückgabetyp
numpy.ndarray
-
sample_most_likely
(state_vector)[Quellcode]¶ Compute the most likely binary string from state vector. :param state_vector: state vector or counts. :type state_vector: numpy.ndarray or dict
- Rückgabe
binary string as numpy.ndarray of ints.
- Rückgabetyp
numpy.ndarray