qiskit.optimization.applications.ising.max_cut¶
Convert max-cut instances into Pauli list Deal with Gset format. See https://web.stanford.edu/~yyye/yyye/Gset/ Design the max-cut object w as a two-dimensional np.array e.g., w[i, j] = x means that the weight of a edge between i and j is x Note that the weights are symmetric, i.e., w[j, i] = x always holds.
Functions
Get graph solution from binary string. |
|
|
Generate Hamiltonian for the max-cut problem of a graph. |
|
Compute the value of a cut. |
-
get_graph_solution
(x)[Quellcode]¶ Get graph solution from binary string.
- Parameter
x (numpy.ndarray) – binary string as numpy array.
- Rückgabe
graph solution as binary numpy array.
- Rückgabetyp
numpy.ndarray
-
get_operator
(weight_matrix)[Quellcode]¶ Generate Hamiltonian for the max-cut problem of a graph.
- Parameter
weight_matrix (numpy.ndarray) – adjacency matrix.
- Rückgabe
operator for the Hamiltonian float: a constant shift for the obj function.
- Rückgabetyp
-
max_cut_value
(x, w)[Quellcode]¶ Compute the value of a cut.
- Parameter
x (numpy.ndarray) – binary string as numpy array.
w (numpy.ndarray) – adjacency matrix.
- Rückgabe
value of the cut.
- Rückgabetyp
float