Ejemplo n.º 1
0
 /**
  * Determine this parallel for loop's schedule. The schedule determines how the loop iterations
  * are apportioned among the parallel team threads. For further information, see class {@linkplain
  * IntegerSchedule}.
  *
  * <p>The <TT>schedule()</TT> method may be overridden in a subclass to return the desired
  * schedule. If not overridden, the default is a runtime schedule (see {@link
  * IntegerSchedule#runtime()}).
  *
  * @return Schedule for this parallel for loop.
  */
 public IntegerSchedule schedule() {
   return IntegerSchedule.runtime();
 }