Commit 9bff0309 by Alan Mishchenko

Added ternary simulation value storage

parent 719d399a
...@@ -148,6 +148,7 @@ struct Aig_Man_t_ ...@@ -148,6 +148,7 @@ struct Aig_Man_t_
void * pManTime; // the timing manager void * pManTime; // the timing manager
void * pManCuts; void * pManCuts;
int * pFastSim; int * pFastSim;
unsigned * pTerSimData; // ternary simulation data
Vec_Ptr_t * vMapped; Vec_Ptr_t * vMapped;
Vec_Int_t * vFlopNums; Vec_Int_t * vFlopNums;
Vec_Int_t * vFlopReprs; Vec_Int_t * vFlopReprs;
......
...@@ -213,6 +213,7 @@ void Aig_ManStop( Aig_Man_t * p ) ...@@ -213,6 +213,7 @@ void Aig_ManStop( Aig_Man_t * p )
Vec_PtrFreeP( &p->vMapped ); Vec_PtrFreeP( &p->vMapped );
if ( p->pSeqModelVec ) if ( p->pSeqModelVec )
Vec_PtrFreeFree( p->pSeqModelVec ); Vec_PtrFreeFree( p->pSeqModelVec );
ABC_FREE( p->pTerSimData );
ABC_FREE( p->pFastSim ); ABC_FREE( p->pFastSim );
ABC_FREE( p->pData ); ABC_FREE( p->pData );
ABC_FREE( p->pSeqModel ); ABC_FREE( p->pSeqModel );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment