
Go to the source code of this file.
Functions | |
| ABC_NAMESPACE_IMPL_START Io_FileType_t | Io_ReadFileType (char *pFileName) |
| DECLARATIONS ///. | |
| Abc_Ntk_t * | Io_ReadNetlist (char *pFileName, Io_FileType_t FileType, int fCheck) |
| Vec_Ptr_t * | temporaryLtlStore (Abc_Ntk_t *pNtk) |
| void | updateLtlStoreOfNtk (Abc_Ntk_t *pNtk, Vec_Ptr_t *tempLtlStore) |
| Abc_Ntk_t * | Io_Read (char *pFileName, Io_FileType_t FileType, int fCheck, int fBarBufs) |
| void | Io_Write (Abc_Ntk_t *pNtk, char *pFileName, Io_FileType_t FileType) |
| void | Io_WriteHie (Abc_Ntk_t *pNtk, char *pBaseName, char *pFileName) |
| Abc_Obj_t * | Io_ReadCreatePi (Abc_Ntk_t *pNtk, char *pName) |
| Abc_Obj_t * | Io_ReadCreatePo (Abc_Ntk_t *pNtk, char *pName) |
| Abc_Obj_t * | Io_ReadCreateLatch (Abc_Ntk_t *pNtk, char *pNetLI, char *pNetLO) |
| Abc_Obj_t * | Io_ReadCreateResetLatch (Abc_Ntk_t *pNtk, int fBlifMv) |
| Abc_Obj_t * | Io_ReadCreateNode (Abc_Ntk_t *pNtk, char *pNameOut, char *pNamesIn[], int nInputs) |
| Abc_Obj_t * | Io_ReadCreateConst (Abc_Ntk_t *pNtk, char *pName, int fConst1) |
| Abc_Obj_t * | Io_ReadCreateInv (Abc_Ntk_t *pNtk, char *pNameIn, char *pNameOut) |
| Abc_Obj_t * | Io_ReadCreateBuf (Abc_Ntk_t *pNtk, char *pNameIn, char *pNameOut) |
| FILE * | Io_FileOpen (const char *FileName, const char *PathVar, const char *Mode, int fVerbose) |
| void | Io_TransformSF2PLA (char *pNameIn, char *pNameOut) |
| void | Io_TransformROM2PLA (char *pNameIn, char *pNameOut) |
| Vec_Ptr_t * | Io_ConvertNumsToSop (Vec_Wec_t *vNums, int nVars) |
| Vec_Ptr_t * | Io_ConvertNumsToSopMulti (Vec_Wec_t *vNums, int nVars) |
| Vec_Ptr_t * | Io_FileReadCnf (char *pFileName, int fMulti) |
Function*************************************************************
Synopsis [Reads CNF from file.]
Description []
SideEffects []
SeeAlso []
Definition at line 987 of file ioUtil.c.


Definition at line 1007 of file ioUtil.c.


Function*************************************************************
Synopsis [Provide an fopen replacement with path lookup]
Description [Provide an fopen replacement where the path stored in pathvar MVSIS variable is used to look up the path for name. Returns NULL if file cannot be opened.]
SideEffects []
SeeAlso []
Definition at line 828 of file ioUtil.c.


| Vec_Ptr_t * Io_FileReadCnf | ( | char * | pFileName, |
| int | fMulti ) |
Definition at line 1025 of file ioUtil.c.

| Abc_Ntk_t * Io_Read | ( | char * | pFileName, |
| Io_FileType_t | FileType, | ||
| int | fCheck, | ||
| int | fBarBufs ) |
Function*************************************************************
Synopsis [Read the network from a file.]
Description []
SideEffects []
SeeAlso []
Definition at line 241 of file ioUtil.c.


Function*************************************************************
Synopsis [Create an inverter or buffer for the given net.]
Description [Assumes that the nets already exist.]
SideEffects []
SeeAlso []
Definition at line 804 of file ioUtil.c.

Function*************************************************************
Synopsis [Create a constant 0 node driving the net with this name.]
Description [Assumes that the net already exists.]
SideEffects []
SeeAlso []
Definition at line 763 of file ioUtil.c.

Function*************************************************************
Synopsis [Create an inverter or buffer for the given net.]
Description [Assumes that the nets already exist.]
SideEffects []
SeeAlso []
Definition at line 783 of file ioUtil.c.

Function*************************************************************
Synopsis [Create a latch with the given input/output.]
Description [By default, the latch value is unknown (ABC_INIT_NONE).]
SideEffects []
SeeAlso []
Definition at line 669 of file ioUtil.c.


Function*************************************************************
Synopsis [Create node and the net driven by it.]
Description []
SideEffects []
SeeAlso []
Definition at line 734 of file ioUtil.c.

Function*************************************************************
Synopsis [Creates PI terminal and net.]
Description []
SideEffects []
SeeAlso []
Definition at line 619 of file ioUtil.c.

Function*************************************************************
Synopsis [Creates PO terminal and net.]
Description []
SideEffects []
SeeAlso []
Definition at line 644 of file ioUtil.c.

Function*************************************************************
Synopsis [Create the reset latch with data=1 and init=0.]
Description []
SideEffects []
SeeAlso []
Definition at line 702 of file ioUtil.c.

| ABC_NAMESPACE_IMPL_START Io_FileType_t Io_ReadFileType | ( | char * | pFileName | ) |
DECLARATIONS ///.
CFile****************************************************************
FileName [ioUtil.c]
SystemName [ABC: Logic synthesis and verification system.]
PackageName [Command processing package.]
Synopsis [Procedures to write the network in BENCH format.]
Author [Alan Mishchenko]
Affiliation [UC Berkeley]
Date [Ver. 1.0. Started - June 20, 2005.]
Revision [
] FUNCTION DEFINITIONS /// Function*************************************************************
Synopsis [Returns the file type.]
Description []
SideEffects []
SeeAlso []
Definition at line 47 of file ioUtil.c.


| Abc_Ntk_t * Io_ReadNetlist | ( | char * | pFileName, |
| Io_FileType_t | FileType, | ||
| int | fCheck ) |
Function*************************************************************
Synopsis [Read the network from a file.]
Description []
SideEffects []
SeeAlso []
Definition at line 99 of file ioUtil.c.


| void Io_TransformROM2PLA | ( | char * | pNameIn, |
| char * | pNameOut ) |
Function*************************************************************
Synopsis [Tranform SF into PLA.]
Description []
SideEffects []
SeeAlso []
Definition at line 935 of file ioUtil.c.
| void Io_TransformSF2PLA | ( | char * | pNameIn, |
| char * | pNameOut ) |
Function*************************************************************
Synopsis [Tranform SF into PLA.]
Description []
SideEffects []
SeeAlso []
Definition at line 879 of file ioUtil.c.

| void Io_Write | ( | Abc_Ntk_t * | pNtk, |
| char * | pFileName, | ||
| Io_FileType_t | FileType ) |
Function*************************************************************
Synopsis [Write the network into file.]
Description []
SideEffects []
SeeAlso []
Definition at line 320 of file ioUtil.c.


| void Io_WriteHie | ( | Abc_Ntk_t * | pNtk, |
| char * | pBaseName, | ||
| char * | pFileName ) |
Function*************************************************************
Synopsis [Write the network into file.]
Description []
SideEffects []
SeeAlso []
Definition at line 486 of file ioUtil.c.

Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
Definition at line 191 of file ioUtil.c.

Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
Definition at line 220 of file ioUtil.c.
