File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 3737 * @param MAX_INV_TIMING_COST Stops inverse timing cost from going to infinity
3838 * with very lax timing constraints, which avoids multiplying by a
3939 * gigantic timing_cost_norm when auto-normalizing. The exact value
40- * of this cost has relatively little impact, but should not be large
41- * enough to be on the order of timing costs for normal constraints.
40+ * of this cost has relatively little impact, but should be large
41+ * enough to not affect the timing costs computatation for normal
42+ * constraints.
4243 *
4344 * @param place_algorithm Determines how the member values are updated upon
4445 * each temperature change during the placer annealing process.
@@ -64,7 +65,7 @@ class t_placer_costs {
6465 void update_norm_factors ();
6566
6667 private:
67- double MAX_INV_TIMING_COST = 1 .e9 ;
68+ double MAX_INV_TIMING_COST = 1 .e12 ;
6869 t_place_algorithm place_algorithm;
6970};
7071
You can’t perform that action at this time.
0 commit comments