From 6cd384c4ac0e447396b22506e4d5a951426c8281 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Fri, 6 Mar 2020 08:30:05 +0100 Subject: [PATCH] Instantiate all ConsensusAlgorithm components --- source/base/mpi_consensus_algorithm.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source/base/mpi_consensus_algorithm.cc b/source/base/mpi_consensus_algorithm.cc index b4ecfb91bf..b5ce9f544b 100644 --- a/source/base/mpi_consensus_algorithm.cc +++ b/source/base/mpi_consensus_algorithm.cc @@ -24,6 +24,10 @@ namespace Utilities { template class ConsensusAlgorithmProcess; + template class ConsensusAlgorithm_NBX; + + template class ConsensusAlgorithm_PEX; + template class ConsensusAlgorithmSelector; @@ -35,6 +39,14 @@ namespace Utilities std::pair, unsigned int>; + template class ConsensusAlgorithm_NBX< + std::pair, + unsigned int>; + + template class ConsensusAlgorithm_PEX< + std::pair, + unsigned int>; + } // end of namespace MPI } // end of namespace Utilities -- 2.39.5