Do not clip negative delays just yet- needs more debug

Signed-off-by: dsengupta0628 <dsengupta@precisioninno.com>
This commit is contained in:
dsengupta0628 2026-03-26 14:35:25 +00:00
parent d8a92a8c13
commit cb8851ef57
1 changed files with 3 additions and 3 deletions

View File

@ -116,9 +116,9 @@ GateTableModel::gateDelay(const Pvt *pvt,
drvr_slew = findValue(pvt, slew_models_->model(), in_slew, load_cap, 0.0);
else
drvr_slew = 0.0;
// Clip negative delays and slews to zero.
if (gate_delay < 0.0)
gate_delay = 0.0;
// TODO: Check for a better solution than clip negative delays and slews to zero.
//if (gate_delay < 0.0)
// gate_delay = 0.0;
if (drvr_slew < 0.0)
drvr_slew = 0.0;
}