boost::mpi::minimum — Compute the minimum of two values.
// In header: <boost/mpi/operations.hpp> template<typename T> struct minimum { // types typedef ; typedef ; typedef ; // public member functions (, ) ; };
This binary function object computes the minimum of the two values it is given. When used with MPI and a type T that has an associated, built-in MPI data type, translates to MPI_MIN.
T
MPI_MIN
minimum
( x, y) ;
Returns:
the minimum of x and y.