@@ -89,11 +89,9 @@ enum class ScreenUpdatePriority {
8989/* Values large enough to be way out of range for any data, but small enough
9090 * to allow a small number to be added to them without going out of range. */
9191#define HUGE_POSITIVE_FLOAT 1 .e30
92- #define HUGE_NEGATIVE_FLOAT -1 .e30
9392
9493/* Used to avoid floating-point errors when comparing values close to 0 */
9594#define EPSILON 1 .e-15
96- #define NEGATIVE_EPSILON -1 .e-15
9795
9896#define FIRST_ITER_WIRELENTH_LIMIT 0.85 /* If used wirelength exceeds this value in first iteration of routing, do not route */
9997
@@ -110,12 +108,10 @@ constexpr auto INVALID_BLOCK_ID = ClusterBlockId(-2);
110108 * and maps it to the complex logic blocks found in the architecture
111109 ******************************************************************************/
112110
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 */
116112/* Ensure no gain can ever be this negative! */
117113#ifndef UNDEFINED
118- # define UNDEFINED - 1
114+ # define UNDEFINED (- 1 )
119115#endif
120116
121117enum class e_router_lookahead {
@@ -552,7 +548,6 @@ enum class e_timing_update_type {
552548/* Values of number of placement available move types */
553549constexpr int NUM_PL_MOVE_TYPES = 7 ;
554550constexpr int NUM_PL_NONTIMING_MOVE_TYPES = 3 ;
555- constexpr int NUM_PL_1ST_STATE_MOVE_TYPES = 4 ;
556551
557552/* Timing data structures end */
558553enum sched_type {
0 commit comments