#include "metislib.h"
Go to the source code of this file.
Macros | |
#define | HC 3 |
#define | HR 6 |
#define | INCOL 10 |
#define | INROW 20 |
#define | SC 2 |
#define | SR 5 |
#define | VC 1 |
#define | VR 4 |
Functions | |
void | MinCover (idx_t *xadj, idx_t *adjncy, idx_t asize, idx_t bsize, idx_t *cover, idx_t *csize) |
idx_t | MinCover_Augment (idx_t *xadj, idx_t *adjncy, idx_t col, idx_t *mate, idx_t *flag, idx_t *level, idx_t maxlevel) |
void | MinCover_ColDFS (idx_t *xadj, idx_t *adjncy, idx_t root, idx_t *mate, idx_t *where, idx_t flag) |
void | MinCover_Decompose (idx_t *xadj, idx_t *adjncy, idx_t asize, idx_t bsize, idx_t *mate, idx_t *cover, idx_t *csize) |
void | MinCover_RowDFS (idx_t *xadj, idx_t *adjncy, idx_t root, idx_t *mate, idx_t *where, idx_t flag) |
#define HC 3 |
Definition at line 23 of file mincover.c.
#define HR 6 |
Definition at line 26 of file mincover.c.
#define INCOL 10 |
Definition at line 19 of file mincover.c.
#define INROW 20 |
Definition at line 20 of file mincover.c.
#define SC 2 |
Definition at line 22 of file mincover.c.
#define SR 5 |
Definition at line 25 of file mincover.c.
#define VC 1 |
Definition at line 21 of file mincover.c.
#define VR 4 |
Definition at line 24 of file mincover.c.
void MinCover | ( | idx_t * | xadj, |
idx_t * | adjncy, | ||
idx_t | asize, | ||
idx_t | bsize, | ||
idx_t * | cover, | ||
idx_t * | csize | ||
) |
Definition at line 42 of file mincover.c.
idx_t MinCover_Augment | ( | idx_t * | xadj, |
idx_t * | adjncy, | ||
idx_t | col, | ||
idx_t * | mate, | ||
idx_t * | flag, | ||
idx_t * | level, | ||
idx_t | maxlevel | ||
) |
Definition at line 126 of file mincover.c.
void MinCover_ColDFS | ( | idx_t * | xadj, |
idx_t * | adjncy, | ||
idx_t | root, | ||
idx_t * | mate, | ||
idx_t * | where, | ||
idx_t | flag | ||
) |
Definition at line 212 of file mincover.c.
void MinCover_Decompose | ( | idx_t * | xadj, |
idx_t * | adjncy, | ||
idx_t | asize, | ||
idx_t | bsize, | ||
idx_t * | mate, | ||
idx_t * | cover, | ||
idx_t * | csize | ||
) |
Definition at line 163 of file mincover.c.