costHa.h 361 B

123456789101112131415161718
  1. /*************************************************
  2. *
  3. * costHa.h - Data structure for costHa (spread)
  4. *
  5. * It is used for (heap) sorting the
  6. * cumulative time, it's a contiguous structure.
  7. *
  8. *************************************************/
  9. #ifndef COSTHA_H
  10. #define COSTHA_H 1
  11. struct costHa
  12. {
  13. float min_cost, angle;
  14. int row, col;
  15. };
  16. #endif