dwave.samplers.SimulatedAnnealingSampler.parameters#
- SimulatedAnnealingSampler.parameters = None[source]#
Keyword arguments accepted by the sampling methods.
See
SimulatedAnnealingSampler.sample()
for a description of the parameters.Examples
This example looks at a sampler’s parameters and some of their values.
>>> from dwave.samplers import SimulatedAnnealingSampler >>> sampler = SimulatedAnnealingSampler() >>> for kwarg in sorted(sampler.parameters): ... print(kwarg) beta_range beta_schedule_type initial_states initial_states_generator interrupt_function num_reads num_sweeps num_sweeps_per_beta seed >>> sampler.parameters['beta_range'] [] >>> sampler.parameters['beta_schedule_type'] ['beta_schedule_options']