Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the master branch, built from commit 69109f5924.
PrevUpHomeNext

Function operator-

boost::mpi::operator- — Computes the difference between two process groups.

Synopsis

// In header: <boost/mpi/group.hpp>


BOOST_MPI_DECL group operator-(const group & g1, const group & g2);

Description

This routine returns a new group that contains all processes that are in group g1 but not in group g2, ordered in the same way as g1. Equivalent to MPI_Group_difference.


PrevUpHomeNext