Allow delay of 0, as requested by Infineon model of the 2EDNY52X

This commit is contained in:
Holger Vogt 2024-04-26 11:15:54 +02:00
parent 35a7e49ac8
commit 7f0dc4b39f
1 changed files with 2 additions and 2 deletions

View File

@ -563,8 +563,8 @@ static void EVTprocess_output(
if (g_mif_info.circuit.anal_type == MIF_TRAN) {
delay = port->delay;
if(delay <= 0.0) {
printf("\nERROR - Output delay <= 0 not allowed - output ignored!\n");
if(delay < 0.0) {
printf("\nERROR - Output delay < 0 not allowed - output ignored!\n");
printf(" Instance: %s\n Node: %s\n Time: %f \n",
g_mif_info.instance->MIFname, node_table[node_index]->name,
g_mif_info.ckt->CKTtime);