Skip to content
Snippets Groups Projects
Commit fa90fb0d authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

Fixed for compiling AMDiS in seq mode.

parent f8e4f05c
No related branches found
No related tags found
No related merge requests found
......@@ -239,27 +239,9 @@ namespace AMDiS {
stdMpiDet.updateSendDataSize();
stdMpiGrdUh.updateSendDataSize();
#if 0
RankToBoundMap& ownBound = intBoundary.getOwn();
for (RankToBoundMap::iterator it = ownBound.begin();
it != ownBound.end(); ++it) {
for (unsigned int i = 0; i < it->second.size(); i++) {
BoundaryObject &bObj = it->second[i].rankObj;
if (bObj.subObj != VERTEX) {
stdMpiDet.recv(it->first);
stdMpiGrdUh.recv(it->first);
break;
}
}
}
#endif
stdMpiDet.startCommunication();
stdMpiGrdUh.startCommunication();
for (RankToBoundMap::iterator it = allBounds.begin();
it != allBounds.end(); ++it) {
vector<BoundaryObject> subBound;
......@@ -286,8 +268,6 @@ namespace AMDiS {
elBoundGrdUhNeigh[subBound[i]] = stdMpiGrdUh.getRecvData(it->first)[i];
}
}
MSG("INIT PARALLEL FINISCHED!\n");
}
#endif
......@@ -580,7 +560,9 @@ namespace AMDiS {
} else {
TEST_EXIT_DBG(!parametric)("No yet implemented!\n");
#ifdef HAVE_PARALLEL_DOMAIN_AMDIS
detNeigh = elBoundDet[blub];
#endif
}
......@@ -609,7 +591,9 @@ namespace AMDiS {
basFcts[system]->evalGrdUh(*lambda, *lambdaNeigh, uhNeigh[system], grdUhNeigh[iq]);
} else {
#ifdef HAVE_PARALLEL_DOMAIN_AMDIS
grdUhNeigh[iq] = elBoundGrdUhNeigh[blub][iq];
#endif
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment