File tree 1 file changed +0
-30
lines changed
perception/autoware_bytetrack/lib/include
1 file changed +0
-30
lines changed Original file line number Diff line number Diff line change 64
64
b = _temp_index; \
65
65
}
66
66
67
- #if 0
68
- #include <assert.h>
69
- #define ASSERT (cond ) assert(cond)
70
- #define PRINTF (fmt , ...) printf(fmt, ##__VA_ARGS__)
71
- #define PRINT_COST_ARRAY (a , n ) \
72
- while (1) { \
73
- printf(#a " = ["); \
74
- if ((n) > 0) { \
75
- printf("%f", (a)[0]); \
76
- for (uint_t j = 1; j < n; j++) { \
77
- printf(", %f", (a)[j]); \
78
- } \
79
- } \
80
- printf("]\n"); \
81
- break; \
82
- }
83
- #define PRINT_INDEX_ARRAY (a , n ) \
84
- while (1) { \
85
- printf(#a " = ["); \
86
- if ((n) > 0) { \
87
- printf("%d", (a)[0]); \
88
- for (uint_t j = 1; j < n; j++) { \
89
- printf(", %d", (a)[j]); \
90
- } \
91
- } \
92
- printf("]\n"); \
93
- break; \
94
- }
95
- #else
96
67
#define ASSERT (cond )
97
68
#define PRINTF (fmt , ...)
98
69
#define PRINT_COST_ARRAY (a , n )
99
70
#define PRINT_INDEX_ARRAY (a , n )
100
- #endif
101
71
102
72
typedef signed int int_t ;
103
73
typedef unsigned int uint_t ;
You can’t perform that action at this time.
0 commit comments