mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 06:03:23 +00:00
sta: reverse LHS of histogram
This commit is contained in:
parent
f157f6cba3
commit
9c640bfdd2
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ struct StaWorker
|
||||||
log(" legend: * represents %d endpoint(s)\n", max_freq / bar_width);
|
log(" legend: * represents %d endpoint(s)\n", max_freq / bar_width);
|
||||||
log(" + represents [1,%d) endpoint(s)\n", max_freq / bar_width);
|
log(" + represents [1,%d) endpoint(s)\n", max_freq / bar_width);
|
||||||
for (int i = num_bins-1; i >= 0; --i)
|
for (int i = num_bins-1; i >= 0; --i)
|
||||||
log("[%6d, %6d) |%s%c\n", min_arrival + bin_size * i, min_arrival + bin_size * (i + 1),
|
log("(%6d, %6d] |%s%c\n", min_arrival + bin_size * (i + 1), min_arrival + bin_size * i,
|
||||||
std::string(bins[i] * bar_width / max_freq, '*').c_str(),
|
std::string(bins[i] * bar_width / max_freq, '*').c_str(),
|
||||||
(bins[i] * bar_width) % max_freq > 0 ? '+' : ' ');
|
(bins[i] * bar_width) % max_freq > 0 ? '+' : ' ');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue