These variables were all local variables that were unused. In the _energy_change case you actually had the dangerous behavior that you were modifying a local when you probably thought you were operating on the class member variable.
I know there are several instances where I made local variables that were used at the time, but future updates left them behind without removing them. Thanks for this!
These variables were all local variables that were unused. In the
_energy_change
case you actually had the dangerous behavior that you were modifying a local when you probably thought you were operating on the class member variable.