Update pdrCore.c

Fixed issue with time stats for generalization in PDR
This commit is contained in:
Andrew Luka 2024-04-21 10:55:52 +03:00 committed by GitHub
parent 8a174ee865
commit ac9cfc766a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -697,7 +697,7 @@ int Pdr_ManGeneralize( Pdr_Man_t * p, int k, Pdr_Set_t * pCube, Pdr_Set_t ** ppP
return -1;
if ( RetValue == 0 )
{
p->tGeneral += clock() - clk;
p->tGeneral += Abc_Clock() - clk;
return 0;
}