Pierre Jolivet

Results 10 issues of Pierre Jolivet

The exit statuses of functions are non-consistent in the library, e.g., `MMG2D_Set_meshSize` returns `1` on success, while `MMG2D_mmg2dlib` returns `MMG5_SUCCESS` (defined to `0`) on success. Would it be possible to...

kind: enhancement
part: library

It appears `configure` has been generated with a rather old `autoreconf` binary: https://github.com/hypre-space/hypre/blob/3c04212d77385869b7aa9a05fb07099c65a81b1b/src/configure#L4 It is causing grief with recent Intel compilers: https://gitlab.com/petsc/petsc/-/issues/1255#note_1135549645. Could `configure` but updated somehow and regenerated with...

The exit statuses of functions are non-consistent in the library, e.g., `PMMG_Set_meshSize` returns `1` on success, while `PMMG_bdryUpdate` returns `PMMG_SUCCESS` (defined to `0`) on success. Would it be possible to...

kind: cleanup
kind: wish
part: library
priority: low

Sorry for these very naive questions, I don't know the inner workings of Gridap so they may be inappropriate. 1. When you do assembly in parallel, do you use ghost...

Mmg handles 64-bit integers while ParMmg doesn't, e.g., ``` int MMG3D_Get_meshSize(MMG5_pMesh mesh, MMG5_int* np, MMG5_int* ne, MMG5_int* nprism, ``` vs. ``` int PMMG_Get_meshSize(PMMG_pParMesh parmesh,int *np,int *ne,int *nprism,int *nt, ```