dwave.optimization.model.States.size#
- States.size()#
Number of model states.
Examples
This example adds three uninitialized states to a model and verifies the number of model states.
>>> from dwave.optimization.model import Model >>> model = Model() >>> model.states.resize(3) >>> model.states.size() 3