A dimension minimum value schedule is a communication schedule for finding the smallest elements of a distributed array along one of its dimensions, yielding a reduced array with rank one less than the source.
A dimension minimum value schedule is described by a collective object with local components of class MinvalDim. The public interface of the MinvalDim class is
class DAD ; template<class T> class MinvalDim { public : MinvalDim(const DAD* res, const DAD* src, const int dim) ; void execute(T* resDat, T* srcDat) ; private : ... } ;