Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion dcalc/PrimaDelayCalc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ PrimaDelayCalc::PrimaDelayCalc(StaState *sta) :
PrimaDelayCalc::PrimaDelayCalc(const PrimaDelayCalc &dcalc) :
DelayCalcBase(dcalc),
pin_node_map_(network_),
node_index_map_(dcalc.node_index_map_),
// node_index_map_ is intentionally not copied. Its keys are raw
// ParasiticNode* whose pointees may already be freed when this copy is made
// (parasitic networks are rebuilt during repair), and copying the map would
// dereference them via the ParasiticNodeLess comparator. It is transient
// state rebuilt by findNodeCount() before any read.
prima_order_(dcalc.prima_order_),
watch_pin_values_(network_),
table_dcalc_(makeDmpCeffElmoreDelayCalc(this))
Expand Down