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

* Bugfix when compiling in dbg mode

parent ab48be0c
No related branches found
No related tags found
No related merge requests found
......@@ -387,9 +387,9 @@ namespace AMDiS {
insertIt = periodicList->rclist.end();
periodicList->coarseningManager = coarseningManager;
} else {
if(edge[0]) {
TEST_EXIT((dof0 == edge[0] && dof1 == edge[1]) ||
(dof1 == edge[0] && dof0 == edge[1]))
if (edge[0]) {
TEST_EXIT_DBG((dof0 == edge[0] && dof1 == edge[1]) ||
(dof1 == edge[0] && dof0 == edge[1]))
("invalid macro file?\n");
}
}
......
......@@ -185,16 +185,6 @@ namespace AMDiS {
*/
void removeDOFParents(int n_neigh);
// /** \brief
// * Sets \ref newCoords.
// */
// inline void setNewCoords(int i, bool n) { rclist[i].newCoords = n; };
// /** \brief
// * Returns \ref newCoords.
// */
// inline bool getNewCoords(int i) const { return rclist[i].newCoords; };
RCNeighbourList *periodicSplit(DegreeOfFreedom *edge[2],
DegreeOfFreedom *nextEdge[2],
int *n_neigh,
......
......@@ -85,8 +85,7 @@ namespace AMDiS {
TEST_EXIT_DBG(periodicList)("periodicList = NULL\n");
newDOF =
refinePatch(edge, periodicList, n_neigh_periodic, bound);
newDOF = refinePatch(edge, periodicList, n_neigh_periodic, bound);
if (firstNewDOF == -1) {
firstNewDOF = newDOF;
......@@ -354,7 +353,8 @@ namespace AMDiS {
int *n_neigh)
{
FUNCNAME("RefinementManager2d::getRefinePatch()");
Triangle *el = dynamic_cast<Triangle*>(const_cast<Element*>( (*el_info)->getElement()));
int opp_vertex = 0;
if ((*el_info)->getNeighbour(2) && (*el_info)->getOppVertex(2) != 2) {
......@@ -365,8 +365,7 @@ namespace AMDiS {
opp_vertex = (*el_info)->getOppVertex(2);
ElInfo *neigh_info = stack->traverseNeighbour2d(*el_info, 2);
neigh_info->getElement()->setMark(max(neigh_info->getElement()->getMark(),
1));
neigh_info->getElement()->setMark(max(neigh_info->getElement()->getMark(), 1));
neigh_info = refineFunction(neigh_info);
/****************************************************************************/
......
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