Skip to content

Revert "Fix wrong index in 2D mesh generation" #308

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

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions src/mmg2d/delone_2d.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ int MMG2D_delone(MMG5_pMesh mesh,MMG5_pSol sol,MMG5_int ip,MMG5_int *list,int il
MMG5_Hash hedg;
static int8_t mmgWarn0=0,mmgWarn1=0;

/* Initialize tagdel field */
for (k=1; k<=mesh->np-4; k++)
/* Reset tagdel field */
for (k=1; k<ilist; k++)
mesh->point[k].tagdel = 0;

/* Triangles in the cavity are those s.t. pt->base == base */
Expand Down
Loading