UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

37 lines (35 loc) 689 B
/** * See metis.h for more details * -1 is the used to signal absence of value, in which case a default will be used */ export class metis_options { ptype = -1; objtype = -1; /** * Coarsening scheme * 0 - METIS_CTYPE_RM * 1 - METIS_CTYPE_SHEM * @type {number} */ ctype = -1; iptype = -1; rtype = -1; dbglvl = -1; niter = -1; ncuts = -1; /** * Random seed * Integer * @type {number} */ seed = -1; no2hop = -1; minconn = -1; contig = -1; ccorder = -1; pfactor = -1; nseps = -1; ufactor = -1; numbering = -1; compress = - 1; }