parallel dcalc with diff arc counts resolves #288

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry
2025-09-06 14:43:01 -07:00
parent 433f9aa7d7
commit 2163a5c6b9
4 changed files with 15 additions and 5 deletions

View File

@@ -35,6 +35,7 @@
#include "PortDirection.hh"
#include "Network.hh"
#include "DcalcAnalysisPt.hh"
#include "FuncExpr.hh"
namespace sta {
@@ -1293,6 +1294,11 @@ Edge::to_string(const StaState *sta) const
string str = from(graph)->to_string(sta);
str += " -> ";
str += to(graph)->to_string(sta);
FuncExpr *when = arc_set_->cond();
if (when) {
str += " ";
str += when->to_string();
}
return str;
}