1 typedef struct _com_mat_t{
2   double **comm;
3   int n;  /*comm is of size n by n the other element are zeroes*/
4 
5 } com_mat_t;
6 
7 
8 int  *kpartition(int, com_mat_t*, int, int *, int);
9 tm_tree_t * kpartition_build_tree_from_topology(tm_topology_t *topology,double **com_mat,int N, int *constraints, int nb_constraints, double *obj_weight, double *com_speed);
10 
11 #define HAVE_LIBSCOTCH 0  // missing configure setup?
12