From 6ff05e580b8485ad9f5729df5940c5ac6e9dbfb9 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Sun, 31 May 2020 15:31:47 -0700 Subject: [PATCH] clk uncertainty with pocv --- search/PathEnd.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/search/PathEnd.cc b/search/PathEnd.cc index aecfa1de..4084f20d 100644 --- a/search/PathEnd.cc +++ b/search/PathEnd.cc @@ -361,10 +361,11 @@ PathEnd::checkTgtClkDelay(const PathVertex *tgt_clk_path, if (clk_info->isPropagated()) { // Propagated clock. Propagated arrival is seeded with // early_late==path_min_max insertion delay. + Arrival clk_arrival = tgt_clk_path->arrival(sta); Arrival path_insertion = search->clockInsertion(tgt_clk, tgt_src_pin, tgt_clk_rf, min_max, min_max, tgt_path_ap); - latency=tgt_clk_path->arrival(sta)-tgt_clk_edge->time()-path_insertion; + latency = clk_arrival - tgt_clk_edge->time() - path_insertion; } else // Ideal clock.