#include "gft_common.h"
Go to the source code of this file.
Classes | |
struct | gft::Graph::_Node |
struct | gft::Graph::_Graph |
Namespaces | |
gft | |
Base namespace for common definitions and prototypes. | |
gft::Graph | |
Typedefs | |
typedef struct gft::Graph::_Node | gft::Graph::GraphNode |
typedef struct gft::Graph::_Graph | gft::Graph::Graph |
Functions | |
Graph * | gft::Graph::Create (int nnodes, int outdegree, float *Wnodes) |
void | gft::Graph::Destroy (Graph **graph) |
void | gft::Graph::addEdge (Graph *graph, int src, int dest, float w) |
void | gft::Graph::addDirectedEdge (Graph *graph, int src, int dest, float w) |