summaryrefslogtreecommitdiffstats
path: root/src/phys/place/libhmetis.h
blob: 60b9c12ee860645bcc2d9852433d5e125f796ac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// A. Hurst ahurst@eecs.berkeley.edu

#ifndef LIBHMETIS_H_
#define LIBHMETIS_H_

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 );


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 );

#endif