/// <summary> /// Adds to the Value /// </summary> public void ApplyChange(IntVariable amount) { Value += amount.Value; }
/// <summary> /// Overwrites the current Value /// </summary> public void SetValue(IntVariable value) { Value = value.Value; }