#include "bac.h"
#include "bacPrs.h"
#include "proof/cec/cec.h"
#include "base/main/mainInt.h"
Go to the source code of this file.
◆ Abc_FrameExportPtr()
Definition at line 73 of file bacCom.c.
74{
78 {
79 printf( "ABC framework is not started.\n" );
80 return NULL;
81 }
84 printf( "There is no CBA design present.\n" );
86 if ( vPtr == NULL )
87 printf( "Converting to Ptr has failed.\n" );
88 return vPtr;
89}
ABC_DLL Abc_Frame_t * Abc_FrameGetGlobalFrame()
struct Bac_Man_t_ Bac_Man_t
Vec_Ptr_t * Bac_PtrDeriveFromCba(Bac_Man_t *p)
typedefABC_NAMESPACE_HEADER_START struct Vec_Ptr_t_ Vec_Ptr_t
INCLUDES ///.
◆ Abc_FrameImportPtr()
FUNCTION DEFINITIONS ///.
Function********************************************************************
Synopsis [Accessing current Bac_Ntk_t.]
Description []
SideEffects []
SeeAlso []
Definition at line 60 of file bacCom.c.
61{
64 {
65 printf( "ABC framework is not started.\n" );
66 return;
67 }
70 printf( "Converting from Ptr failed.\n" );
72}
Bac_Man_t * Bac_PtrTransformToCba(Vec_Ptr_t *vDes)
◆ Bac_End()
Function********************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
Definition at line 125 of file bacCom.c.
126{
127 Bac_AbcFreeMan( pAbc );
128}
◆ Bac_Init()
Function********************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
Definition at line 102 of file bacCom.c.
103{
104 Cmd_CommandAdd( pAbc,
"New word level",
"@_read", Bac_CommandRead, 0 );
105 Cmd_CommandAdd( pAbc,
"New word level",
"@_write", Bac_CommandWrite, 0 );
106 Cmd_CommandAdd( pAbc,
"New word level",
"@_ps", Bac_CommandPs, 0 );
107 Cmd_CommandAdd( pAbc,
"New word level",
"@_put", Bac_CommandPut, 0 );
108 Cmd_CommandAdd( pAbc,
"New word level",
"@_get", Bac_CommandGet, 0 );
109 Cmd_CommandAdd( pAbc,
"New word level",
"@_clp", Bac_CommandClp, 0 );
110 Cmd_CommandAdd( pAbc,
"New word level",
"@_cec", Bac_CommandCec, 0 );
111 Cmd_CommandAdd( pAbc,
"New word level",
"@_test", Bac_CommandTest, 0 );
112}
void Cmd_CommandAdd(Abc_Frame_t *pAbc, const char *sGroup, const char *sName, Cmd_CommandFuncType pFunc, int fChanges)