/// <summary>
 /// Resets the scheduling strategy. This is typically invoked by
 /// parent strategies to reset child strategies.
 /// </summary>
 public virtual void Reset()
 {
     SchedulingStrategy.Reset();
 }
Exemple #2
0
 /// <summary>
 /// Resets the scheduling strategy. This is typically invoked by
 /// parent strategies to reset child strategies.
 /// </summary>
 public void Reset()
 {
     ScheduledSteps = 0;
     SuffixStrategy?.Reset();
 }
 /// <summary>
 /// Resets the scheduling strategy. This is typically invoked by
 /// parent strategies to reset child strategies.
 /// </summary>
 public void Reset()
 {
     ScheduledSteps = 0;
     ChildStrategy.Reset();
 }