Uses of Interface
paratask.runtime.Reduction

Packages that use Reduction
paratask.runtime Parallel Task runtime classes. 
 

Uses of Reduction in paratask.runtime
 

Fields in paratask.runtime declared as Reduction
static Reduction<java.lang.Object[]> Reduction.ArrayCOMBINE
          Combines the elements from the arrays into a new array.
static Reduction<java.lang.Boolean> Reduction.BooleanAND
          Performs a Boolean AND
static Reduction<java.lang.Boolean> Reduction.BooleanOR
          Performs a Boolean OR
static Reduction<java.lang.Double> Reduction.DoubleMAX
          Perform a maximum reduction for Double values.
static Reduction<java.lang.Double> Reduction.DoubleMIN
          Perform a minimum reduction for Double values.
static Reduction<java.lang.Double> Reduction.DoubleSUM
          Perform a sum reduction for Double values.
static Reduction<java.lang.Integer> Reduction.IntegerMAX
          Perform a maximum reduction for Integer values.
static Reduction<java.lang.Integer> Reduction.IntegerMIN
          Perform a minimum reduction for Integer values.
static Reduction<java.lang.Integer> Reduction.IntegerSUM
          Perform a sum reduction for Integer values.
 

Methods in paratask.runtime with parameters of type Reduction
 E TaskIDGroup.getReturnResult(Reduction<E> red)
          Perform a reduction on the set of results.