Uses of Class
edu.rit.pj.reduction.CharacterOp

Packages that use CharacterOp
Package
Description
The Reduction package provides a variety of reduction variables.
The Replica package provides replicated, shared reduction variables.
  • Uses of CharacterOp in edu.rit.pj.reduction

    Fields in edu.rit.pj.reduction declared as CharacterOp
    Modifier and Type
    Field
    Description
    static final CharacterOp
    CharacterOp.AND
    The character bitwise "and" binary operation.
    static final CharacterOp
    CharacterOp.MAXIMUM
    The character maximum binary operation.
    static final CharacterOp
    CharacterOp.MINIMUM
    The character minimum binary operation.
    static final CharacterOp
    CharacterOp.OR
    The character bitwise "or" binary operation.
    static final CharacterOp
    CharacterOp.XOR
    The character bitwise "exclusive or" binary operation.
    Methods in edu.rit.pj.reduction with parameters of type CharacterOp
    Modifier and Type
    Method
    Description
    static void
    ReduceArrays.reduce(char[][] src, Range srcRowRange, Range srcColRange, char[][] dst, Range dstRowRange, Range dstColRange, CharacterOp op)
    Combine a range of elements from one character matrix with a range of elements in another character matrix.
    static void
    ReduceArrays.reduce(char[] src, Range srcRange, char[] dst, Range dstRange, CharacterOp op)
    Combine a range of elements from one character array with a range of elements in another character array.
    char
    SharedCharacter.reduce(char value, CharacterOp op)
    Combine this reduction variable with the given value using the given operation.
    void
    SharedCharacterArray.reduce(char[] src, CharacterOp op)
    Combine this array reduction variable with the given array using the given operation.
    void
    SharedCharacterArray.reduce(int dstoff, char[] src, int srcoff, int len, CharacterOp op)
    Combine a portion of this array reduction variable with a portion of the given array using the given operation.
    char
    SharedCharacterArray.reduce(int i, char value, CharacterOp op)
    Combine this array reduction variable at the given index with the given value using the given operation.
  • Uses of CharacterOp in edu.rit.pj.replica

    Constructors in edu.rit.pj.replica with parameters of type CharacterOp
    Modifier
    Constructor
    Description
     
    Construct a new replicated, shared character reduction variable with the given reduction operator.
     
    ReplicatedCharacter(CharacterOp op, char initialValue)
    Construct a new replicated, shared character reduction variable with the given reduction operator and initial value.
     
    ReplicatedCharacter(CharacterOp op, char initialValue, int tag)
    Construct a new replicated, shared character reduction variable with the given reduction operator, initial value, and message tag.
     
    ReplicatedCharacter(CharacterOp op, char initialValue, int tag, Comm comm)
    Construct a new replicated, shared character reduction variable with the given reduction operator, initial value, message tag, and communicator.