template<typename RequestType, typename AnswerType>
class Utilities::MPI::ConsensusAlgorithms::Interface< RequestType, AnswerType >
A base class for algorithms that implement consensus algorithms, see the documentation of the surrounding namespace for more information.
This base class only introduces a basic interface to achieve these goals, while derived classes implement different algorithms to actually compute such communication patterns and perform the communication.
- Template Parameters
-
RequestType | The type of the elements of the vector to be sent. |
AnswerType | The type of the elements of the vector to be received. |
Definition at line 231 of file mpi_consensus_algorithms.h.
template<typename RequestType , typename AnswerType >
virtual std::vector< unsigned int > Utilities::MPI::ConsensusAlgorithms::Interface< RequestType, AnswerType >::run |
( |
const std::vector< unsigned int > & | targets, |
|
|
const std::function< RequestType(const unsigned int)> & | create_request, |
|
|
const std::function< AnswerType(const unsigned int, const RequestType &)> & | answer_request, |
|
|
const std::function< void(const unsigned int, const AnswerType &)> & | process_answer, |
|
|
const MPI_Comm | comm ) |
|
pure virtual |
Run the consensus algorithm and return a vector of process ranks that have requested answers from the current process.
- Parameters
-
[in] | targets | A vector that contains the ranks of processes to which requests should be sent and from which answers need to be received. |
[in] | create_request | A function object that takes the rank of a target process as argument and returns the message that forms the request to this target. |
[in] | answer_request | A function that takes as arguments the rank of the process that has sent a request to us, along with the message of the request, and returns the message that forms the answer that should be sent back to the requesting process. |
[in] | process_answer | A function object that takes as argument the rank of a process from which we have received an answer to a previously sent request, along with the message that forms this answer. This function is used to describe what the caller of the consensus algorithm wants to do with the received answer. |
[in] | comm | The MPI communicator on which the whole algorithm is to be performed. |
Implemented in Utilities::MPI::ConsensusAlgorithms::NBX< RequestType, AnswerType >, Utilities::MPI::ConsensusAlgorithms::PEX< RequestType, AnswerType >, Utilities::MPI::ConsensusAlgorithms::Selector< RequestType, AnswerType >, and Utilities::MPI::ConsensusAlgorithms::Serial< RequestType, AnswerType >.