libhmetis.h 819 Bytes
Newer Older
Alan Mishchenko committed
1 2
// A. Hurst ahurst@eecs.berkeley.edu

3 4
#ifndef ABC__phys__place__libhmetis_h
#define ABC__phys__place__libhmetis_h
Alan Mishchenko committed
5

6 7 8 9

ABC_NAMESPACE_HEADER_START


Alan Mishchenko committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
static void HMETIS_PartRecursive(int nvtxs, 
              int nhedges, 
              int *vwgts, 
              int *eptr,
              int *eind,
              int *hewgts, 
              int nparts, 
              int nbfactor, 
              int *options, 
              int *part, 
              int *edgecnt ) {} //;


static void HMETIS_PartKway(int nvtxs, 
             int nhedges, 
             int *vwgts, 
             int *eptr, 
             int *eind,
             int *hewgts, 
             int nparts, 
             int nbfactor, 
             int *options, 
             int *part, 
             int *edgecnt ) {} //;

35 36 37 38


ABC_NAMESPACE_HEADER_END

Alan Mishchenko committed
39
#endif