Making 'dsec' return correct return value (undoing this change, made by mistake).

This commit is contained in:
Alan Mishchenko 2019-06-26 15:37:55 +03:00
parent 05322e0446
commit 0e78722419
1 changed files with 1 additions and 1 deletions

View File

@ -3018,7 +3018,7 @@ int Abc_NtkDarSec( Abc_Ntk_t * pNtk1, Abc_Ntk_t * pNtk2, Fra_Sec_t * pSecPar )
// perform verification
RetValue = Fra_FraigSec( pMan, pSecPar, NULL );
Aig_ManStop( pMan );
return RetValue == -1 ? -1 : !RetValue;
return RetValue;
}
/**Function*************************************************************