dcalc threshold adjustment

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2026-03-01 17:33:20 -08:00
parent 0f8d7cffd3
commit 94b8fd8f37
1 changed files with 2 additions and 1 deletions

View File

@ -170,9 +170,10 @@ LumpedCapDelayCalc::makeResult(const LibertyLibrary *drvr_library,
for (const auto [load_pin, load_idx] : load_pin_index_map) {
ArcDelay wire_delay = 0.0;
Slew load_slew = drvr_slew;
thresholdAdjust(load_pin, drvr_library, rf, wire_delay, drvr_slew);
dcalc_result.setWireDelay(load_idx, wire_delay);
dcalc_result.setLoadSlew(load_idx, drvr_slew);
dcalc_result.setLoadSlew(load_idx, load_slew);
}
return dcalc_result;
}