Uses of Interface
pt.runtime.Reduction

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

Uses of Reduction in pt.runtime
 

Fields in pt.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 pt.runtime with parameters of type Reduction
 E TaskIDGroup.getReturnResult(Reduction<E> red)
          Perform a reduction on the results contained in the group.
 E TaskIDGroup.reduce(Reduction<E> red)
          Perform a reduction on the set of results.