abc-master
|
#include "aig.h"
Go to the source code of this file.
Functions | |
static ABC_NAMESPACE_IMPL_START int | Aig_NodeGetLeafCostOne (Aig_Obj_t *pNode, int nFanoutLimit) |
DECLARATIONS ///. More... | |
int | Aig_ManFindCut_int (Vec_Ptr_t *vFront, Vec_Ptr_t *vVisited, int nSizeLimit, int nFanoutLimit) |
void | Aig_ManFindCut (Aig_Obj_t *pRoot, Vec_Ptr_t *vFront, Vec_Ptr_t *vVisited, int nSizeLimit, int nFanoutLimit) |
void Aig_ManFindCut | ( | Aig_Obj_t * | pRoot, |
Vec_Ptr_t * | vFront, | ||
Vec_Ptr_t * | vVisited, | ||
int | nSizeLimit, | ||
int | nFanoutLimit | ||
) |
Function*************************************************************
Synopsis [Computes one sequential cut of the given size.]
Description []
SideEffects []
SeeAlso []
Definition at line 145 of file aigWin.c.
int Aig_ManFindCut_int | ( | Vec_Ptr_t * | vFront, |
Vec_Ptr_t * | vVisited, | ||
int | nSizeLimit, | ||
int | nFanoutLimit | ||
) |
Function*************************************************************
Synopsis [Builds reconvergence-driven cut by changing one leaf at a time.]
Description [This procedure looks at the current leaves and tries to change one leaf at a time in such a way that the cut grows as little as possible. In evaluating the fanins, this procedure looks only at their immediate predecessors (this is why it is called a one-level construction procedure).]
SideEffects []
SeeAlso []
Definition at line 80 of file aigWin.c.
|
inlinestatic |
DECLARATIONS ///.
CFile****************************************************************
FileName [aigWin.c]
SystemName [ABC: Logic synthesis and verification system.]
PackageName [AIG package.]
Synopsis [Window computation.]
Author [Alan Mishchenko]
Affiliation [UC Berkeley]
Date [Ver. 1.0. Started - April 28, 2007.]
Revision [
]FUNCTION DEFINITIONS /// Function*************************************************************
Synopsis [Evaluate the cost of removing the node from the set of leaves.]
Description [Returns the number of new leaves that will be brought in. Returns large number if the node cannot be removed from the set of leaves.]
SideEffects []
SeeAlso []
Definition at line 46 of file aigWin.c.