qiskit.optimization.applications.ising.stable_set¶
Convert stable set instances into Pauli list. We read instances in the Gset format, see https://web.stanford.edu/~yyye/yyye/Gset/ , for compatibility with the maxcut format, but the weights on the edges as they are not really used and are always assumed to be 1. The graph is represented by an adjacency matrix.
Functions
Get graph solution from binary string. |
|
|
Generate Hamiltonian for the maximum stable set in a graph. |
|
Compute the value of a stable set, and its feasibility. |
-
get_graph_solution
(x)[ソース]¶ Get graph solution from binary string.
- パラメータ
x (numpy.ndarray) – binary string as numpy array.
- 戻り値
graph solution as binary numpy array.
- 戻り値の型
numpy.ndarray
-
get_operator
(w)[ソース]¶ Generate Hamiltonian for the maximum stable set in a graph.
- パラメータ
w (numpy.ndarray) – adjacency matrix.
- 戻り値
operator for the Hamiltonian and a constant shift for the obj function.
- 戻り値の型
tuple(WeightedPauliOperator, float)