deltaPositionEnd property

List<num> get deltaPositionEnd

Returns the perturbation magnitudes at the end of the annealing cycle.

Implementation

List<num> get deltaPositionEnd => List.of(_deltaPositionEnd);
set deltaPositionEnd (List<num> value)

Sets the perturbation magnitudes at the end of the annealing cycle.

Implementation

set deltaPositionEnd(List<num> value) {
  _deltaPositionEnd
    ..clear()
    ..addAll(value);
  _updateLazyVariables();
}