-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgraph.js
134 lines (91 loc) · 1.67 KB
/
graph.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
Graph
Niels Groot Obbink
Node and Edge constructors for creating a graph.
*/
let edge = function(_type, _to)
{
let to = _to || null;
let type = _type || 0x00;
this.get_type = function()
{
return type;
};
this.set_type = function(_type)
{
type = _type;
};
this.add_type = function(_type)
{
type = type | _type;
};
this.remove_type = function(_type)
{
type = type & ~ _type;
};
this.get_to = function()
{
return to;
};
this.equals = function(edge)
{
return type == edge.get_type() && to.equals(edge.get_to());
};
this.toString = this.valueOf = function()
{
return '--[' + type + ']--> \'' + to + '\'';
};
};
let node = function(value)
{
// NOTE assume value has an .equals and .toString method.
let edges = [];
let data = value || null
// Add a this -> other edge.
this.connect = function(node, edge_type)
{
let new_edge = new edge(edge_type, node);
edges.push(new_edge);
};
// Remove a this -> other edge.
this.disconnect = function(node, edge_type)
{
let i, edge;
for(i = 0; i < edges.length; i++)
{
edge = edges[i];
if( edge.get_type() == edge_type &&
edge.get_to().equals( node ) )
{
// Remove the edge from our edge list.
edges.splice(i, 1);
return;
}
}
};
this.get_edges = function()
{
return edges;
};
this.set_data = function(new_data)
{
data = new_data;
}
this.get_data = function()
{
return data;
};
this.equals = function(node)
{
return data.equals(node.get_data()); // Assume all data has an equals method.
};
this.toString = this.valueOf = function()
{
return data.toString();
};
};
module.exports =
{
Edge: edge,
Node: node
};