common.h 191 B

123456789101112131415161718
  1. #ifndef COMMON_BFS_H
  2. #define COMMON_BFS_H
  3. #define MAX_THREADS_PER_BLOCK 512
  4. #define OPEN
  5. //Structure to hold a node information
  6. struct Node
  7. {
  8. int starting;
  9. int no_of_edges;
  10. };
  11. #endif