(match)
| 300 | """Evaluate 'nCL + nBL + 2 - nCWL' using resolved timing values.""" |
| 301 | |
| 302 | def replace_param(match): |
| 303 | name = match.group(0) |
| 304 | if name in timing_dict: |
| 305 | return str(timing_dict[name]) |
| 306 | return name |
| 307 | |
| 308 | substituted = re.sub(r"[a-zA-Z_]\w*", replace_param, expr) |
| 309 | try: |
nothing calls this directly
no outgoing calls
no test coverage detected