@@ -89,11 +89,9 @@ enum class ScreenUpdatePriority {
89
89
/* Values large enough to be way out of range for any data, but small enough
90
90
* to allow a small number to be added to them without going out of range. */
91
91
#define HUGE_POSITIVE_FLOAT 1 .e30
92
- #define HUGE_NEGATIVE_FLOAT -1 .e30
93
92
94
93
/* Used to avoid floating-point errors when comparing values close to 0 */
95
94
#define EPSILON 1 .e-15
96
- #define NEGATIVE_EPSILON -1 .e-15
97
95
98
96
#define FIRST_ITER_WIRELENTH_LIMIT 0.85 /* If used wirelength exceeds this value in first iteration of routing, do not route */
99
97
@@ -110,12 +108,10 @@ constexpr auto INVALID_BLOCK_ID = ClusterBlockId(-2);
110
108
* and maps it to the complex logic blocks found in the architecture
111
109
******************************************************************************/
112
110
113
- #define NO_CLUSTER -1
114
- #define NEVER_CLUSTER -2
115
- #define NOT_VALID -10000 /* Marks gains that aren't valid */
111
+ #define NOT_VALID (-10000 ) /* Marks gains that aren't valid */
116
112
/* Ensure no gain can ever be this negative! */
117
113
#ifndef UNDEFINED
118
- # define UNDEFINED - 1
114
+ # define UNDEFINED (- 1 )
119
115
#endif
120
116
121
117
enum class e_router_lookahead {
@@ -552,7 +548,6 @@ enum class e_timing_update_type {
552
548
/* Values of number of placement available move types */
553
549
constexpr int NUM_PL_MOVE_TYPES = 7 ;
554
550
constexpr int NUM_PL_NONTIMING_MOVE_TYPES = 3 ;
555
- constexpr int NUM_PL_1ST_STATE_MOVE_TYPES = 4 ;
556
551
557
552
/* Timing data structures end */
558
553
enum sched_type {
0 commit comments