First stab at the calculate_strength() function - all it nets us is a floating point exception when compiling with -DDEBUG

This commit is contained in:
2011-06-24 11:03:40 -04:00
parent 5205b9dfab
commit 977322d4ee
4 changed files with 104 additions and 1 deletions

View File

@ -48,6 +48,8 @@ class Graph
list<Vertex*> get_vertices() const { return vertices; }
list<Edge> get_edges() const { return edges; }
list<Vertex*> get_colour(int colour);
list<Edge> get_vertex_edges(Vertex* v);
bool point_in_vertex(int x, int y, int size);
Vertex * vertex_at(int x, int y);