Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / traffic_navigation / mapping.h @ 1950

History | View | Annotate | Download (213 Bytes)

1 1950 dgurjar
//Representation of an edge (road)
2
typedef struct {
3
    int to;
4
    int dist;
5
}edge
6
7
//Representation of an intersection on the graph
8
typedef struct {
9
    int type;
10
    int numOut;
11
    edge[] outgoingEdges;
12
}node