[MOAB-dev] r5208 - MOAB/trunk/src/parallel/moab
hongjun at mcs.anl.gov
hongjun at mcs.anl.gov
Fri Nov 11 12:58:33 CST 2011
Author: hongjun
Date: 2011-11-11 12:58:33 -0600 (Fri, 11 Nov 2011)
New Revision: 5208
Modified:
MOAB/trunk/src/parallel/moab/ParallelComm.hpp
Log:
o Reverted to revision 5206
o "get_comm_procs" should get the current shared processors not add new ones
Modified: MOAB/trunk/src/parallel/moab/ParallelComm.hpp
===================================================================
--- MOAB/trunk/src/parallel/moab/ParallelComm.hpp 2011-11-11 17:39:56 UTC (rev 5207)
+++ MOAB/trunk/src/parallel/moab/ParallelComm.hpp 2011-11-11 18:58:33 UTC (rev 5208)
@@ -251,7 +251,6 @@
*/
ErrorCode exchange_owned_meshs(std::vector<unsigned int>& exchange_procs,
std::vector<Range*>& exchange_ents,
- std::map<std::vector<int>, std::vector<EntityHandle> >& proc_nvecs,
bool store_remote_handles,
bool wait_all = true,
bool migrate = false);
@@ -1415,7 +1414,7 @@
inline ErrorCode ParallelComm::get_comm_procs(std::set<unsigned int> &procs)
{
- ErrorCode result = get_interface_procs(procs, true);
+ ErrorCode result = get_interface_procs(procs);
if (MB_SUCCESS != result) return result;
std::copy(buffProcs.begin(), buffProcs.end(), std::inserter(procs, procs.begin()));
More information about the moab-dev
mailing list