We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35f274e commit 09730f1Copy full SHA for 09730f1
1 file changed
src/dbSta/src/dbNetwork.cc
@@ -2016,6 +2016,14 @@ void dbNetwork::visitConnectedPins(const Net* net,
2016
}
2017
2018
2019
+// Caution:
2020
+// - Network::highestConnectedNet(Net *net) retrieves the highest hierarchical
2021
+// net connected to the given net.
2022
+// - But `dbNetwork::highestConnectedNet(Net* net)` retrieves the corresponding
2023
+// flat net for the given net.
2024
+// - It behaves differently to cope with the issue 9724.
2025
+// - This redefinition may cause another issue later when
2026
+// `Network::highestConnectedNet(Net *net)` is used elsewhere.
2027
const Net* dbNetwork::highestConnectedNet(Net* net) const
2028
{
2029
const Net* flat = findFlatNet(net);
0 commit comments