AbstractVariationalDriver.py bug in updating step_count
Created by: evmckinney9
I think this error can be fixed either by writing a setter function for the @property step_count
in the same way that @optimizer.setter
exists in the same file.
Otherwise, maybe this can be fixed by changing self.step_count = 0
to self._step_count = 0
.