#include <space.h>Go to the source code of this file.
Functions | |
| graph_t * | newGraph (PORD_INT nvtx, PORD_INT nedges) |
| void | freeGraph (graph_t *G) |
| void | printGraph (graph_t *G) |
| void | randomizeGraph (graph_t *G) |
| graph_t * | setupSubgraph (graph_t *G, PORD_INT *intvertex, PORD_INT nvint, PORD_INT *vtxmap) |
| graph_t * | setupGraphFromMtx (inputMtx_t *A) |
| graph_t * | setupGridGraph (PORD_INT dimX, PORD_INT dimY, PORD_INT type) |
| PORD_INT | connectedComponents (graph_t *G) |
| static PORD_INT | indNodes (graph_t *G, PORD_INT *vtxmap) |
| graph_t * | compressGraph (graph_t *G, PORD_INT *vtxmap) |
Definition at line 470 of file graph.c.
Definition at line 344 of file graph.c.
| void freeGraph | ( | graph_t * | G | ) |
Definition at line 400 of file graph.c.
| void printGraph | ( | graph_t * | G | ) |
| void randomizeGraph | ( | graph_t * | G | ) |
Definition at line 109 of file graph.c.
| graph_t * setupGraphFromMtx | ( | inputMtx_t * | A | ) |
Definition at line 195 of file graph.c.
Definition at line 258 of file graph.c.
Definition at line 132 of file graph.c.