Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / colonet / testing / wl_network_colonet / colonybfs.h @ 13

History | View | Annotate | Download (288 Bytes)

1
#ifndef COLONYBFS_H
2
#define COLONYBFS_H
3

    
4
/*
5
Colony BFS - Performs breadth-first search on a colony adjacency matrix
6

7
Felix Duvallet
8
*/
9
#include "localization.h"
10

    
11
char colony_bfs_find_leader ( unsigned char matrix[MAX_ROBOTS][MAX_ROBOTS], unsigned char start, unsigned char end );
12

    
13
#endif