Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.optimization.applications.ising.exact_cover

exact cover

Functions

check_solution_satisfiability(sol, …)

check solution satisfiability

get_operator(list_of_subsets)

Construct the Hamiltonian for the exact solver problem.

get_solution(x)

param x

binary string as numpy array.

check_solution_satisfiability(sol, list_of_subsets)[소스]

check solution satisfiability

get_operator(list_of_subsets)[소스]

Construct the Hamiltonian for the exact solver problem.

참고

Assumption: the union of the subsets contains all the elements to cover.
The Hamiltonian is:
sum_{each element e}{(1-sum_{every subset_i that contains e}{Xi})^2},
where Xi (Xi=1 or 0) means whether should include the subset i.
매개변수

list_of_subsets (list) – list of lists (i.e., subsets)

반환값

operator for the Hamiltonian, a constant shift for the obj function.

반환 형식

tuple(WeightedPauliOperator, float)

get_solution(x)[소스]
매개변수

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

반환값

graph solution as binary numpy array.

반환 형식

numpy.ndarray