dwave.system.composites.EmbeddingComposite.sample¶
- EmbeddingComposite.sample(bqm, chain_strength=None, chain_break_method=None, chain_break_fraction=True, embedding_parameters=None, return_embedding=None, warnings=None, **parameters)[source]¶
Sample from the provided binary quadratic model.
- Parameters
bqm (
dimod.BinaryQuadraticModel
) – Binary quadratic model to be sampled from.chain_strength (float/mapping/callable, optional) – Sets the coupling strength between qubits representing variables that form a chain. Mappings should specify the required chain strength for each variable. Callables should accept the BQM and embedding and return a float or mapping. By default, chain_strength is calculated with
uniform_torque_compensation()
.chain_break_method (function/list, optional) – Method or methods used to resolve chain breaks. If multiple methods are given, the results are concatenated and a new field called “chain_break_method” specifying the index of the method is appended to the sample set. See
unembed_sampleset()
anddwave.embedding.chain_breaks
.chain_break_fraction (bool, optional, default=True) – Add a chain_break_fraction field to the unembedded response with the fraction of chains broken before unembedding.
embedding_parameters (dict, optional) – If provided, parameters are passed to the embedding method as keyword arguments. Overrides any embedding_parameters passed to the constructor.
return_embedding (bool, optional) – If True, the embedding, chain strength, chain break method and embedding parameters are added to
dimod.SampleSet.info
of the returned sample set. The default behaviour is defined byreturn_embedding_default
, which itself defaults to False.warnings (
WarningAction
, optional) – Defines what warning action to take, if any. Seewarnings
. The default behaviour is defined bywarnings_default
, which itself defaults toIGNORE
**parameters – Parameters for the sampling method, specified by the child sampler.
- Returns
Examples
See the example in
EmbeddingComposite
.