deltaPositionEnd property

List<num> deltaPositionEnd

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

Implementation

List<num> get deltaPositionEnd => List.of(_deltaPositionEnd);
void 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();
}