File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -35,12 +35,15 @@ if { $::env(GPL_TIMING_DRIVEN) } {
3535
3636# Parameters for phi coefficients in global placement
3737# Validate phi coefficient constraints before using them
38- if { [info exists ::env(MIN_PLACE_STEP_COEF)] && [info exists ::env(MAX_PLACE_STEP_COEF)] } {
38+ if { [info exists ::env(MIN_PLACE_STEP_COEF)] \
39+ && [info exists ::env(MAX_PLACE_STEP_COEF)] } {
3940 set min_phi $::env(MIN_PLACE_STEP_COEF)
4041 set max_phi $::env(MAX_PLACE_STEP_COEF)
4142
4243 if { $min_phi > $max_phi } {
43- utl::error GPL 200 " MIN_PLACE_STEP_COEF ($min_phi ) cannot be greater than MAX_PLACE_STEP_COEF ($max_phi )"
44+ utl::error GPL 200 \
45+ " MIN_PLACE_STEP_COEF ($min_phi ) cannot be greater than \
46+ MAX_PLACE_STEP_COEF ($max_phi )"
4447 }
4548}
4649
You can’t perform that action at this time.
0 commit comments