Cloned library METIS with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

74 lines
1.1 KiB

/*
* struct.h
*
* This file contains data structures for the various programs of METIS.
*
* Started 8/9/02
* George
*
* $Id: struct.h 14362 2013-05-21 21:35:23Z karypis $
*/
#ifndef _STRUCTBIN_H_
#define _STRUCTBIN_H_
/*************************************************************************/
/*! This data structure stores the various command line arguments */
/*************************************************************************/
typedef struct {
idx_t ptype;
idx_t objtype;
idx_t ctype;
idx_t iptype;
idx_t rtype;
idx_t no2hop;
idx_t minconn;
idx_t contig;
idx_t ondisk;
idx_t dropedges;
idx_t nooutput;
idx_t balance;
idx_t ncuts;
idx_t niter;
idx_t niparts;
idx_t gtype;
idx_t ncommon;
idx_t seed;
idx_t dbglvl;
idx_t nparts;
idx_t nseps;
idx_t ufactor;
idx_t pfactor;
idx_t compress;
idx_t ccorder;
char *filename;
char *outfile;
char *xyzfile;
char *tpwgtsfile;
char *ubvecstr;
idx_t wgtflag;
idx_t numflag;
real_t *tpwgts;
real_t *ubvec;
real_t iotimer;
real_t parttimer;
real_t reporttimer;
size_t maxmemory;
} params_t;
#endif