applyUpdate method

bool applyUpdate(
  1. double updated
)

Used by the Solver to apply updates to this variable. Only updated variables show up in Solver flush results.

Implementation

bool applyUpdate(double updated) {
  final res = updated != value;
  value = updated;
  return res;
}