#ifndef COMMON_BFS_H #define COMMON_BFS_H #define MAX_THREADS_PER_BLOCK 512 #define OPEN //Structure to hold a node information struct Node { int starting; int no_of_edges; }; #endif