コード例 #1
0
 /// <summary>
 /// Resets the scheduling strategy. This is typically invoked by
 /// parent strategies to reset child strategies.
 /// </summary>
 public virtual void Reset()
 {
     SchedulingStrategy.Reset();
 }
コード例 #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();
 }
コード例 #3
0
 /// <summary>
 /// Resets the scheduling strategy. This is typically invoked by
 /// parent strategies to reset child strategies.
 /// </summary>
 public void Reset()
 {
     ScheduledSteps = 0;
     ChildStrategy.Reset();
 }