Browse Source

aga: Remove unused state defines

These were left over from a previous approach which didn't pan out.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
David Gibson 9 years ago
parent
commit
bae7806a52
1 changed files with 0 additions and 6 deletions
  1. 0 6
      ccan/aga/dijkstra.c

+ 0 - 6
ccan/aga/dijkstra.c

@@ -17,12 +17,6 @@
  * Dijkstra's algorithm
  */
 
-/* Node states */
-#define STATE_INFINITE	0
-#define STATE_FINITE	1
-#define STATE_COMPLETE	2
-
-
 static void candidate_path(struct aga_graph *g, struct aga_node *node,
 			   aga_icost_t distance,
 			   struct aga_node *prev, const void *prevedge)