diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-26 14:16:44 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-26 14:16:44 -0700 |
commit | 585e6ddc6c55bcd5911124d58048701ea82da494 (patch) | |
tree | 3fc787e2bb568a8f28eeccd5cddd36c0f76f04e9 | |
parent | b2b5cf78e21def63c54c080217d77afefba8e4c7 (diff) | |
download | yosys-585e6ddc6c55bcd5911124d58048701ea82da494.tar.gz yosys-585e6ddc6c55bcd5911124d58048701ea82da494.tar.bz2 yosys-585e6ddc6c55bcd5911124d58048701ea82da494.zip |
Let's not go crazy: use nonzero costs
-rw-r--r-- | tests/various/muxcover.ys | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/various/muxcover.ys b/tests/various/muxcover.ys index 55179a991..fb0556675 100644 --- a/tests/various/muxcover.ys +++ b/tests/various/muxcover.ys @@ -200,7 +200,7 @@ prep design -save gold techmap -muxcover -mux4=0 -nodecode +muxcover -mux4=99 -nodecode clean opt_expr -mux_bool select -assert-count 0 t:$_MUX_ @@ -228,7 +228,7 @@ prep design -save gold techmap -muxcover -mux8=0 -nodecode +muxcover -mux8=99 -nodecode clean opt_expr -mux_bool select -assert-count 0 t:$_MUX_ @@ -256,7 +256,7 @@ prep design -save gold techmap -muxcover -mux8=0 -nodecode +muxcover -mux8=299 -nodecode clean opt_expr -mux_bool select -assert-count 0 t:$_MUX_ @@ -284,7 +284,7 @@ prep design -save gold techmap -muxcover -mux16=0 -nodecode +muxcover -mux16=99 -nodecode clean opt_expr -mux_bool select -assert-count 0 t:$_MUX_ @@ -312,7 +312,7 @@ prep design -save gold techmap -muxcover -mux16=0 -nodecode +muxcover -mux16=299 -nodecode clean opt_expr -mux_bool select -assert-count 0 t:$_MUX_ @@ -341,7 +341,7 @@ prep design -save gold techmap -muxcover -mux16=0 -nodecode +muxcover -mux16=699 -nodecode clean opt_expr -mux_bool select -assert-count 0 t:$_MUX_ |