Bug fix by Horus Nero.

This commit is contained in:
Alan Mishchenko 2018-06-25 14:01:31 -07:00
parent 9ff928a781
commit 7522e68b58
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ Sym_Man_t * Sym_ManStart( Abc_Ntk_t * pNtk, int fVerbose )
for ( i = 0; i < p->nOutputs; i++ )
for ( v = 0; v < p->nInputs; v++ )
if ( Sim_SuppFunHasVar( p->vSuppFun, i, v ) )
Vec_VecPush( p->vSupports, i, (void *)(ABC_PTRUINT_T)v );
Vec_VecPushInt( p->vSupports, i, v );
return p;
}