Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace if with assert. #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions libmetis/mesh.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

#include "metislib.h"

#include <assert.h>

/*****************************************************************************/
/*! This function creates a graph corresponding to the dual of a finite element
Expand Down Expand Up @@ -251,10 +252,9 @@ idx_t FindCommonElements(idx_t qid, idx_t elen, idx_t *eind, idx_t *nptr,
}
}

/* put qid into the neighbor list (in case it is not there) so that it
will be removed in the next step */
if (marker[qid] == 0)
nbrs[k++] = qid;
/* The element whose index is qid is always a trivial neighbor of itself,
so it should be excluded from the list of its neighbors. */
assert(marker[qid] == elen);
marker[qid] = 0;

/* compact the list to contain only those with at least ncommon nodes */
Expand Down