qiskit_addon_opt_mapper.applications.Knapsack¶
- class Knapsack(values, weights, max_weight)[source]¶
Bases:
OptimizationApplicationOptimization application for the “knapsack problem” [1].
References
[1]: “Knapsack problem”, https://en.wikipedia.org/wiki/Knapsack_problem
Init method.
- Parameters:
Methods
__init__(values, weights, max_weight)Init method.
interpret(result)Interpret a result as item indices.
sample_most_likely(state_vector)Compute the most likely binary string from state vector.
Represent as an optimization problem.
Attributes
Getter of max_weight.
- property max_weight: int¶
Getter of max_weight.
- Returns:
The maximal weight for the knapsack problem
- static sample_most_likely(state_vector)[source]¶
Compute the most likely binary string from state vector.
- Parameters:
state_vector (QuasiDistribution | Statevector | ndarray | dict) – state vector or counts or quasi-probabilities.
- Returns:
binary string as numpy.ndarray of ints.
- Raises:
ValueError – if state_vector is not QuasiDistribution, Statevector, np.ndarray, or dict.
- Return type: