mirror of https://github.com/YosysHQ/abc.git
Added API to access the CEX vector.
This commit is contained in:
parent
6c6c0b0686
commit
64f31f98bf
|
|
@ -109,6 +109,7 @@ extern ABC_DLL int Abc_FrameIsFlagEnabled( char * pFlag );
|
|||
extern ABC_DLL int Abc_FrameReadBmcFrames( Abc_Frame_t * p );
|
||||
extern ABC_DLL int Abc_FrameReadProbStatus( Abc_Frame_t * p );
|
||||
extern ABC_DLL Abc_Cex_t * Abc_FrameReadCex( Abc_Frame_t * p );
|
||||
extern ABC_DLL Vec_Ptr_t * Abc_FrameReadCexVec( Abc_Frame_t * p );
|
||||
|
||||
extern ABC_DLL int Abc_FrameReadCexPiNum( Abc_Frame_t * p );
|
||||
extern ABC_DLL int Abc_FrameReadCexRegNum( Abc_Frame_t * p );
|
||||
|
|
|
|||
|
|
@ -61,6 +61,7 @@ char * Abc_FrameReadFlag( char * pFlag ) { return Cmd_FlagRe
|
|||
int Abc_FrameReadBmcFrames( Abc_Frame_t * p ) { return s_GlobalFrame->nFrames; }
|
||||
int Abc_FrameReadProbStatus( Abc_Frame_t * p ) { return s_GlobalFrame->Status; }
|
||||
Abc_Cex_t * Abc_FrameReadCex( Abc_Frame_t * p ) { return s_GlobalFrame->pCex; }
|
||||
Vec_Ptr_t * Abc_FrameReadCexVec( Abc_Frame_t * p ) { return s_GlobalFrame->vCexVec; }
|
||||
|
||||
int Abc_FrameReadCexPiNum( Abc_Frame_t * p ) { return s_GlobalFrame->pCex->nPis; }
|
||||
int Abc_FrameReadCexRegNum( Abc_Frame_t * p ) { return s_GlobalFrame->pCex->nRegs; }
|
||||
|
|
|
|||
Loading…
Reference in New Issue