Skip to content

Commit 8e21cd6

Browse files
Merge branch 'develop' into feature/update-ci
2 parents 1656ab7 + 1bb12ee commit 8e21cd6

File tree

5 files changed

+4
-1
lines changed

5 files changed

+4
-1
lines changed

doc/man/mmg2d.1.gz

42 Bytes
Binary file not shown.

doc/man/mmg3d.1.gz

37 Bytes
Binary file not shown.

doc/man/mmgs.1.gz

41 Bytes
Binary file not shown.

src/common/libtools.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ void MMG5_mmgDefaultValues(MMG5_pMesh mesh) {
9797

9898
fprintf(stdout,"gradation control for required entities (-hgradreq) : %lf\n",
9999
(mesh->info.hgradreq < 0) ? mesh->info.hgradreq : exp(mesh->info.hgradreq) );
100+
fprintf(stdout,"isosurface reference in -ls mode (-isoref) : %d\n",
101+
mesh->info.isoref);
100102
fprintf(stdout,"coordinate regularization parameter (-xreg) : %lf\n",
101103
mesh->info.lxreg);
102104
}
@@ -249,6 +251,7 @@ void MMG5_paramUsage1(void) {
249251
fprintf(stdout,"-hmax val maximal mesh size\n");
250252
fprintf(stdout,"-hmin val minimal mesh size\n");
251253
fprintf(stdout,"-hsiz val constant mesh size\n");
254+
fprintf(stdout,"-isoref val reference for isosurface entities\n");
252255
fprintf(stdout,"-rmc [val] enable the removal of componants whose volume fraction is less than\n"
253256
" val (1e-5 if not given) of the mesh volume (ls mode).\n");
254257
}

src/mmg3d/split_3d.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4518,7 +4518,7 @@ int MMG5_split6(MMG5_pMesh mesh,MMG5_pSol met,MMG5_int k,MMG5_int vx[6],int8_t m
45184518

45194519
/* Store face tags and refs from split tetra*/
45204520
for (i=0; i<4; i++) {
4521-
ftag[i] = (xt.ftag[i] & ~MG_REF);
4521+
ftag[i] = (xt0.ftag[i] & ~MG_REF);
45224522
}
45234523

45244524
/* Modify first tetra */

0 commit comments

Comments
 (0)