public void ApplyChange(IntVariable amount)
 {
     this.Value += amount.Value;
 }
 public void SetValue(IntVariable value)
 {
     this.Value = value.Value;
 }