mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Indenting fix in show.cc
This commit is contained in:
parent
4f5b97954e
commit
5fe02b7965
|
@ -482,8 +482,8 @@ struct ShowWorker
|
||||||
|
|
||||||
if (left_node[0] == 'x' && right_node[0] == 'x') {
|
if (left_node[0] == 'x' && right_node[0] == 'x') {
|
||||||
currentColor = xorshift32(currentColor);
|
currentColor = xorshift32(currentColor);
|
||||||
fprintf(f, "%s:e -> %s:w [arrowhead=odiamond, arrowtail=odiamond, dir=both, %s, %s];\n", left_node.c_str(), right_node.c_str(), nextColor(conn).c_str(), widthLabel(conn.first.size()).c_str());
|
fprintf(f, "%s:e -> %s:w [arrowhead=odiamond, arrowtail=odiamond, dir=both, %s, %s];\n", left_node.c_str(), right_node.c_str(), nextColor(conn).c_str(), widthLabel(conn.first.size()).c_str());
|
||||||
} else {
|
} else {
|
||||||
net_conn_map[right_node].bits = conn.first.size();
|
net_conn_map[right_node].bits = conn.first.size();
|
||||||
net_conn_map[right_node].color = nextColor(conn, net_conn_map[right_node].color);
|
net_conn_map[right_node].color = nextColor(conn, net_conn_map[right_node].color);
|
||||||
net_conn_map[left_node].bits = conn.first.size();
|
net_conn_map[left_node].bits = conn.first.size();
|
||||||
|
|
Loading…
Reference in a new issue