abc-master
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
abcRewrite.c
Go to the documentation of this file.
1 /**CFile****************************************************************
2 
3  FileName [abcRewrite.c]
4 
5  SystemName [ABC: Logic synthesis and verification system.]
6 
7  PackageName [Network and node package.]
8 
9  Synopsis [Technology-independent resynthesis of the AIG based on DAG aware rewriting.]
10 
11  Author [Alan Mishchenko]
12 
13  Affiliation [UC Berkeley]
14 
15  Date [Ver. 1.0. Started - June 20, 2005.]
16 
17  Revision [$Id: abcRewrite.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $]
18 
19 ***********************************************************************/
20 
21 #include "base/abc/abc.h"
22 #include "opt/rwr/rwr.h"
23 #include "bool/dec/dec.h"
24 
26 
27 
28 /*
29  The ideas realized in this package are inspired by the paper:
30  Per Bjesse, Arne Boralv, "DAG-aware circuit compression for
31  formal verification", Proc. ICCAD 2004, pp. 42-49.
32 */
33 
34 ////////////////////////////////////////////////////////////////////////
35 /// DECLARATIONS ///
36 ////////////////////////////////////////////////////////////////////////
37 
39 static void Abc_NodePrintCuts( Abc_Obj_t * pNode );
40 static void Abc_ManShowCutCone( Abc_Obj_t * pNode, Vec_Ptr_t * vLeaves );
41 
42 extern void Abc_PlaceBegin( Abc_Ntk_t * pNtk );
43 extern void Abc_PlaceEnd( Abc_Ntk_t * pNtk );
44 extern void Abc_PlaceUpdate( Vec_Ptr_t * vAddedCells, Vec_Ptr_t * vUpdatedNets );
45 
46 ////////////////////////////////////////////////////////////////////////
47 /// FUNCTION DEFINITIONS ///
48 ////////////////////////////////////////////////////////////////////////
49 
50 /**Function*************************************************************
51 
52  Synopsis [Performs incremental rewriting of the AIG.]
53 
54  Description []
55 
56  SideEffects []
57 
58  SeeAlso []
59 
60 ***********************************************************************/
61 int Abc_NtkRewrite( Abc_Ntk_t * pNtk, int fUpdateLevel, int fUseZeros, int fVerbose, int fVeryVerbose, int fPlaceEnable )
62 {
63  extern void Dec_GraphUpdateNetwork( Abc_Obj_t * pRoot, Dec_Graph_t * pGraph, int fUpdateLevel, int nGain );
64  ProgressBar * pProgress;
65  Cut_Man_t * pManCut;
66  Rwr_Man_t * pManRwr;
67  Abc_Obj_t * pNode;
68 // Vec_Ptr_t * vAddedCells = NULL, * vUpdatedNets = NULL;
69  Dec_Graph_t * pGraph;
70  int i, nNodes, nGain, fCompl;
71  abctime clk, clkStart = Abc_Clock();
72 
73  assert( Abc_NtkIsStrash(pNtk) );
74  // cleanup the AIG
76 /*
77  {
78  Vec_Vec_t * vParts;
79  vParts = Abc_NtkPartitionSmart( pNtk, 50, 1 );
80  Vec_VecFree( vParts );
81  }
82 */
83 
84  // start placement package
85 // if ( fPlaceEnable )
86 // {
87 // Abc_PlaceBegin( pNtk );
88 // vAddedCells = Abc_AigUpdateStart( pNtk->pManFunc, &vUpdatedNets );
89 // }
90 
91  // start the rewriting manager
92  pManRwr = Rwr_ManStart( 0 );
93  if ( pManRwr == NULL )
94  return 0;
95  // compute the reverse levels if level update is requested
96  if ( fUpdateLevel )
97  Abc_NtkStartReverseLevels( pNtk, 0 );
98  // start the cut manager
99 clk = Abc_Clock();
100  pManCut = Abc_NtkStartCutManForRewrite( pNtk );
101 Rwr_ManAddTimeCuts( pManRwr, Abc_Clock() - clk );
102  pNtk->pManCut = pManCut;
103 
104  if ( fVeryVerbose )
105  Rwr_ScoresClean( pManRwr );
106 
107  // resynthesize each node once
108  pManRwr->nNodesBeg = Abc_NtkNodeNum(pNtk);
109  nNodes = Abc_NtkObjNumMax(pNtk);
110  pProgress = Extra_ProgressBarStart( stdout, nNodes );
111  Abc_NtkForEachNode( pNtk, pNode, i )
112  {
113  Extra_ProgressBarUpdate( pProgress, i, NULL );
114  // stop if all nodes have been tried once
115  if ( i >= nNodes )
116  break;
117  // skip persistant nodes
118  if ( Abc_NodeIsPersistant(pNode) )
119  continue;
120  // skip the nodes with many fanouts
121  if ( Abc_ObjFanoutNum(pNode) > 1000 )
122  continue;
123 
124  // for each cut, try to resynthesize it
125  nGain = Rwr_NodeRewrite( pManRwr, pManCut, pNode, fUpdateLevel, fUseZeros, fPlaceEnable );
126  if ( !(nGain > 0 || (nGain == 0 && fUseZeros)) )
127  continue;
128  // if we end up here, a rewriting step is accepted
129 
130  // get hold of the new subgraph to be added to the AIG
131  pGraph = (Dec_Graph_t *)Rwr_ManReadDecs(pManRwr);
132  fCompl = Rwr_ManReadCompl(pManRwr);
133 
134  // reset the array of the changed nodes
135  if ( fPlaceEnable )
137 
138  // complement the FF if needed
139  if ( fCompl ) Dec_GraphComplement( pGraph );
140 clk = Abc_Clock();
141  Dec_GraphUpdateNetwork( pNode, pGraph, fUpdateLevel, nGain );
142 Rwr_ManAddTimeUpdate( pManRwr, Abc_Clock() - clk );
143  if ( fCompl ) Dec_GraphComplement( pGraph );
144 
145  // use the array of changed nodes to update placement
146 // if ( fPlaceEnable )
147 // Abc_PlaceUpdate( vAddedCells, vUpdatedNets );
148  }
149  Extra_ProgressBarStop( pProgress );
150 Rwr_ManAddTimeTotal( pManRwr, Abc_Clock() - clkStart );
151  // print stats
152  pManRwr->nNodesEnd = Abc_NtkNodeNum(pNtk);
153  if ( fVerbose )
154  Rwr_ManPrintStats( pManRwr );
155 // Rwr_ManPrintStatsFile( pManRwr );
156  if ( fVeryVerbose )
157  Rwr_ScoresReport( pManRwr );
158  // delete the managers
159  Rwr_ManStop( pManRwr );
160  Cut_ManStop( pManCut );
161  pNtk->pManCut = NULL;
162 
163  // start placement package
164 // if ( fPlaceEnable )
165 // {
166 // Abc_PlaceEnd( pNtk );
167 // Abc_AigUpdateStop( pNtk->pManFunc );
168 // }
169 
170  // put the nodes into the DFS order and reassign their IDs
171  {
172 // abctime clk = Abc_Clock();
173  Abc_NtkReassignIds( pNtk );
174 // ABC_PRT( "time", Abc_Clock() - clk );
175  }
176 // Abc_AigCheckFaninOrder( pNtk->pManFunc );
177  // fix the levels
178  if ( fUpdateLevel )
179  Abc_NtkStopReverseLevels( pNtk );
180  else
181  Abc_NtkLevel( pNtk );
182  // check
183  if ( !Abc_NtkCheck( pNtk ) )
184  {
185  printf( "Abc_NtkRewrite: The network check has failed.\n" );
186  return 0;
187  }
188  return 1;
189 }
190 
191 
192 /**Function*************************************************************
193 
194  Synopsis [Starts the cut manager for rewriting.]
195 
196  Description []
197 
198  SideEffects []
199 
200  SeeAlso []
201 
202 ***********************************************************************/
204 {
205  static Cut_Params_t Params, * pParams = &Params;
206  Cut_Man_t * pManCut;
207  Abc_Obj_t * pObj;
208  int i;
209  // start the cut manager
210  memset( pParams, 0, sizeof(Cut_Params_t) );
211  pParams->nVarsMax = 4; // the max cut size ("k" of the k-feasible cuts)
212  pParams->nKeepMax = 250; // the max number of cuts kept at a node
213  pParams->fTruth = 1; // compute truth tables
214  pParams->fFilter = 1; // filter dominated cuts
215  pParams->fSeq = 0; // compute sequential cuts
216  pParams->fDrop = 0; // drop cuts on the fly
217  pParams->fVerbose = 0; // the verbosiness flag
218  pParams->nIdsMax = Abc_NtkObjNumMax( pNtk );
219  pManCut = Cut_ManStart( pParams );
220  if ( pParams->fDrop )
222  // set cuts for PIs
223  Abc_NtkForEachCi( pNtk, pObj, i )
224  if ( Abc_ObjFanoutNum(pObj) > 0 )
225  Cut_NodeSetTriv( pManCut, pObj->Id );
226  return pManCut;
227 }
228 
229 /**Function*************************************************************
230 
231  Synopsis [Prints the cuts at the nodes.]
232 
233  Description []
234 
235  SideEffects []
236 
237  SeeAlso []
238 
239 ***********************************************************************/
241 {
242  Vec_Ptr_t * vCuts;
243  Cut_Cut_t * pCut;
244  int k;
245 
246  printf( "\nNode %s\n", Abc_ObjName(pNode) );
247  vCuts = (Vec_Ptr_t *)pNode->pCopy;
248  Vec_PtrForEachEntry( Cut_Cut_t *, vCuts, pCut, k )
249  {
250  Extra_PrintBinary( stdout, (unsigned *)&pCut->uSign, 16 );
251  printf( " " );
252  Cut_CutPrint( pCut, 0 );
253  printf( "\n" );
254  }
255 }
256 
257 
258 /**Function*************************************************************
259 
260  Synopsis []
261 
262  Description []
263 
264  SideEffects []
265 
266  SeeAlso []
267 
268 ***********************************************************************/
269 void Abc_ManRewritePrintDivs( Vec_Ptr_t * vDivs, int nLeaves )
270 {
271  Abc_Obj_t * pFanin, * pNode, * pRoot;
272  int i, k;
273  pRoot = (Abc_Obj_t *)Vec_PtrEntryLast(vDivs);
274  // print the nodes
275  Vec_PtrForEachEntry( Abc_Obj_t *, vDivs, pNode, i )
276  {
277  if ( i < nLeaves )
278  {
279  printf( "%6d : %c\n", pNode->Id, 'a'+i );
280  continue;
281  }
282  printf( "%6d : %2d = ", pNode->Id, i );
283  // find the first fanin
284  Vec_PtrForEachEntry( Abc_Obj_t *, vDivs, pFanin, k )
285  if ( Abc_ObjFanin0(pNode) == pFanin )
286  break;
287  if ( k < nLeaves )
288  printf( "%c", 'a' + k );
289  else
290  printf( "%d", k );
291  printf( "%s ", Abc_ObjFaninC0(pNode)? "\'" : "" );
292  // find the second fanin
293  Vec_PtrForEachEntry( Abc_Obj_t *, vDivs, pFanin, k )
294  if ( Abc_ObjFanin1(pNode) == pFanin )
295  break;
296  if ( k < nLeaves )
297  printf( "%c", 'a' + k );
298  else
299  printf( "%d", k );
300  printf( "%s ", Abc_ObjFaninC1(pNode)? "\'" : "" );
301  if ( pNode == pRoot )
302  printf( " root" );
303  printf( "\n" );
304  }
305  printf( "\n" );
306 }
307 
308 /**Function*************************************************************
309 
310  Synopsis []
311 
312  Description []
313 
314  SideEffects []
315 
316  SeeAlso []
317 
318 ***********************************************************************/
320 {
321  if ( Abc_NodeIsTravIdCurrent(pNode) )
322  return;
324  Abc_ManShowCutCone_rec( Abc_ObjFanin0(pNode), vDivs );
325  Abc_ManShowCutCone_rec( Abc_ObjFanin1(pNode), vDivs );
326  Vec_PtrPush( vDivs, pNode );
327 }
328 
329 /**Function*************************************************************
330 
331  Synopsis []
332 
333  Description []
334 
335  SideEffects []
336 
337  SeeAlso []
338 
339 ***********************************************************************/
340 void Abc_ManShowCutCone( Abc_Obj_t * pNode, Vec_Ptr_t * vLeaves )
341 {
342  Abc_Ntk_t * pNtk = pNode->pNtk;
343  Abc_Obj_t * pObj;
344  Vec_Ptr_t * vDivs;
345  int i;
346  vDivs = Vec_PtrAlloc( 100 );
347  Abc_NtkIncrementTravId( pNtk );
348  Vec_PtrForEachEntry( Abc_Obj_t *, vLeaves, pObj, i )
349  {
351  Vec_PtrPush( vDivs, Abc_ObjRegular(pObj) );
352  }
353  Abc_ManShowCutCone_rec( pNode, vDivs );
354  Abc_ManRewritePrintDivs( vDivs, Vec_PtrSize(vLeaves) );
355  Vec_PtrFree( vDivs );
356 }
357 
358 
359 /**Function*************************************************************
360 
361  Synopsis []
362 
363  Description []
364 
365  SideEffects []
366 
367  SeeAlso []
368 
369 ***********************************************************************/
370 void Abc_RwrExpWithCut_rec( Abc_Obj_t * pNode, Vec_Ptr_t * vLeaves, int fUseA )
371 {
372  if ( Vec_PtrFind(vLeaves, pNode) >= 0 || Vec_PtrFind(vLeaves, Abc_ObjNot(pNode)) >= 0 )
373  {
374  if ( fUseA )
375  Abc_ObjRegular(pNode)->fMarkA = 1;
376  else
377  Abc_ObjRegular(pNode)->fMarkB = 1;
378  return;
379  }
380  assert( Abc_ObjIsNode(pNode) );
381  Abc_RwrExpWithCut_rec( Abc_ObjFanin0(pNode), vLeaves, fUseA );
382  Abc_RwrExpWithCut_rec( Abc_ObjFanin1(pNode), vLeaves, fUseA );
383 }
384 
385 /**Function*************************************************************
386 
387  Synopsis []
388 
389  Description []
390 
391  SideEffects []
392 
393  SeeAlso []
394 
395 ***********************************************************************/
396 void Abc_RwrExpWithCut( Abc_Obj_t * pNode, Vec_Ptr_t * vLeaves )
397 {
398  Abc_Obj_t * pObj;
399  int i, CountA, CountB;
400  Abc_RwrExpWithCut_rec( Abc_ObjFanin0(pNode), vLeaves, 1 );
401  Abc_RwrExpWithCut_rec( Abc_ObjFanin1(pNode), vLeaves, 0 );
402  CountA = CountB = 0;
403  Vec_PtrForEachEntry( Abc_Obj_t *, vLeaves, pObj, i )
404  {
405  CountA += Abc_ObjRegular(pObj)->fMarkA;
406  CountB += Abc_ObjRegular(pObj)->fMarkB;
407  Abc_ObjRegular(pObj)->fMarkA = 0;
408  Abc_ObjRegular(pObj)->fMarkB = 0;
409  }
410  printf( "(%d,%d:%d) ", CountA, CountB, CountA+CountB-Vec_PtrSize(vLeaves) );
411 }
412 
413 
414 ////////////////////////////////////////////////////////////////////////
415 /// END OF FILE ///
416 ////////////////////////////////////////////////////////////////////////
417 
418 
420 
char * memset()
void Abc_ManRewritePrintDivs(Vec_Ptr_t *vDivs, int nLeaves)
Definition: abcRewrite.c:269
static int Abc_NtkIsStrash(Abc_Ntk_t *pNtk)
Definition: abc.h:251
typedefABC_NAMESPACE_HEADER_START struct Vec_Ptr_t_ Vec_Ptr_t
INCLUDES ///.
Definition: vecPtr.h:42
static Abc_Obj_t * Abc_ObjFanin1(Abc_Obj_t *pObj)
Definition: abc.h:374
static void Abc_ManShowCutCone(Abc_Obj_t *pNode, Vec_Ptr_t *vLeaves)
Definition: abcRewrite.c:340
int Rwr_ManReadCompl(Rwr_Man_t *p)
Definition: rwrMan.c:245
unsigned fMarkA
Definition: abc.h:134
static int Abc_NtkObjNumMax(Abc_Ntk_t *pNtk)
Definition: abc.h:284
int nNodesEnd
Definition: rwr.h:83
Definition: rwr.h:50
static int Abc_ObjFaninC1(Abc_Obj_t *pObj)
Definition: abc.h:378
void Abc_ManShowCutCone_rec(Abc_Obj_t *pNode, Vec_Ptr_t *vDivs)
Definition: abcRewrite.c:319
void Abc_RwrExpWithCut_rec(Abc_Obj_t *pNode, Vec_Ptr_t *vLeaves, int fUseA)
Definition: abcRewrite.c:370
void Abc_PlaceEnd(Abc_Ntk_t *pNtk)
Definition: abcPlace.c:241
static int Abc_ObjFanoutNum(Abc_Obj_t *pObj)
Definition: abc.h:365
int nNodesBeg
Definition: rwr.h:82
void Dec_GraphUpdateNetwork(Abc_Obj_t *pRoot, Dec_Graph_t *pGraph, int fUpdateLevel, int nGain)
Definition: decAbc.c:240
static int Abc_ObjFaninC0(Abc_Obj_t *pObj)
Definition: abc.h:377
static void Vec_PtrPush(Vec_Ptr_t *p, void *Entry)
Definition: vecPtr.h:606
ABC_DLL int Abc_NtkCheck(Abc_Ntk_t *pNtk)
FUNCTION DEFINITIONS ///.
Definition: abcCheck.c:61
static abctime Abc_Clock()
Definition: abc_global.h:279
void Cut_NodeSetTriv(Cut_Man_t *p, int Node)
Definition: cutApi.c:145
static int Vec_PtrSize(Vec_Ptr_t *p)
Definition: vecPtr.h:295
void Abc_RwrExpWithCut(Abc_Obj_t *pNode, Vec_Ptr_t *vLeaves)
Definition: abcRewrite.c:396
static Abc_Obj_t * Abc_ObjFanin0(Abc_Obj_t *pObj)
Definition: abc.h:373
void Cut_ManSetFanoutCounts(Cut_Man_t *p, Vec_Int_t *vFanCounts)
Definition: cutMan.c:229
DECLARATIONS ///.
Definition: abcAig.c:52
static int Vec_PtrFind(Vec_Ptr_t *p, void *Entry)
Definition: vecPtr.h:694
ABC_DLL void Abc_NtkStopReverseLevels(Abc_Ntk_t *pNtk)
Definition: abcTiming.c:1190
ABC_DLL void Abc_NtkReassignIds(Abc_Ntk_t *pNtk)
Definition: abcUtil.c:1769
void Rwr_ManAddTimeTotal(Rwr_Man_t *p, abctime Time)
Definition: rwrMan.c:293
void * pManFunc
Definition: abc.h:191
static int Abc_ObjIsNode(Abc_Obj_t *pObj)
Definition: abc.h:355
static int Abc_NtkNodeNum(Abc_Ntk_t *pNtk)
Definition: abc.h:293
DECLARATIONS ///.
Abc_Obj_t * pCopy
Definition: abc.h:148
static void * Vec_PtrEntryLast(Vec_Ptr_t *p)
Definition: vecPtr.h:413
ABC_DLL int Abc_AigCleanup(Abc_Aig_t *pMan)
Definition: abcAig.c:194
static void Abc_NodePrintCuts(Abc_Obj_t *pNode)
Definition: abcRewrite.c:240
int Abc_NtkRewrite(Abc_Ntk_t *pNtk, int fUpdateLevel, int fUseZeros, int fVerbose, int fVeryVerbose, int fPlaceEnable)
FUNCTION DEFINITIONS ///.
Definition: abcRewrite.c:61
unsigned uSign
Definition: cut.h:85
void Rwr_ManPrintStats(Rwr_Man_t *p)
Definition: rwrMan.c:143
void Cut_ManStop(Cut_Man_t *p)
Definition: cutMan.c:124
void * Rwr_ManReadDecs(Rwr_Man_t *p)
Definition: rwrMan.c:213
Cut_Man_t * Cut_ManStart(Cut_Params_t *pParams)
FUNCTION DEFINITIONS ///.
Definition: cutMan.c:47
#define ABC_NAMESPACE_IMPL_END
Definition: abc_global.h:108
Rwr_Man_t * Rwr_ManStart(int fPrecompute)
DECLARATIONS ///.
Definition: rwrMan.c:47
void * pManCut
Definition: abc.h:193
void Abc_PlaceUpdate(Vec_Ptr_t *vAddedCells, Vec_Ptr_t *vUpdatedNets)
Definition: abcPlace.c:126
void Rwr_ManAddTimeUpdate(Rwr_Man_t *p, abctime Time)
Definition: rwrMan.c:277
void Cut_CutPrint(Cut_Cut_t *pCut, int fSeq)
Definition: cutCut.c:276
ABC_DLL void Abc_NtkStartReverseLevels(Abc_Ntk_t *pNtk, int nMaxLevelIncrease)
Definition: abcTiming.c:1162
void Extra_ProgressBarStop(ProgressBar *p)
#define Abc_NtkForEachNode(pNtk, pNode, i)
Definition: abc.h:461
static int Abc_NodeIsPersistant(Abc_Obj_t *pNode)
Definition: abc.h:401
void Abc_PlaceBegin(Abc_Ntk_t *pNtk)
Definition: abcPlace.c:178
#define ABC_NAMESPACE_IMPL_START
Definition: abc_global.h:107
static int Abc_NodeIsTravIdCurrent(Abc_Obj_t *p)
Definition: abc.h:411
void Rwr_ManAddTimeCuts(Rwr_Man_t *p, abctime Time)
Definition: rwrMan.c:261
void Rwr_ScoresReport(Rwr_Man_t *p)
Definition: rwrEva.c:550
static Abc_Obj_t * Abc_ObjRegular(Abc_Obj_t *p)
Definition: abc.h:323
Abc_Ntk_t * pNtk
Definition: abc.h:130
unsigned fMarkB
Definition: abc.h:135
void Extra_PrintBinary(FILE *pFile, unsigned Sign[], int nBits)
#define Abc_NtkForEachCi(pNtk, pCi, i)
Definition: abc.h:515
static Vec_Ptr_t * Vec_PtrAlloc(int nCap)
FUNCTION DEFINITIONS ///.
Definition: vecPtr.h:83
int Id
Definition: abc.h:132
ABC_DLL char * Abc_ObjName(Abc_Obj_t *pNode)
DECLARATIONS ///.
Definition: abcNames.c:48
static void Abc_NtkIncrementTravId(Abc_Ntk_t *p)
Definition: abc.h:406
ProgressBar * Extra_ProgressBarStart(FILE *pFile, int nItemsTotal)
FUNCTION DEFINITIONS ///.
ABC_DLL Vec_Int_t * Abc_NtkFanoutCounts(Abc_Ntk_t *pNtk)
Definition: abcUtil.c:1701
#define assert(ex)
Definition: util_old.h:213
static void Extra_ProgressBarUpdate(ProgressBar *p, int nItemsCur, char *pString)
Definition: extra.h:243
static Abc_Obj_t * Abc_ObjNot(Abc_Obj_t *p)
Definition: abc.h:324
static ABC_NAMESPACE_IMPL_START Cut_Man_t * Abc_NtkStartCutManForRewrite(Abc_Ntk_t *pNtk)
DECLARATIONS ///.
Definition: abcRewrite.c:203
ABC_DLL void Abc_AigUpdateReset(Abc_Aig_t *pMan)
Definition: abcAig.c:1460
#define Vec_PtrForEachEntry(Type, vVec, pEntry, i)
MACRO DEFINITIONS ///.
Definition: vecPtr.h:55
ABC_INT64_T abctime
Definition: abc_global.h:278
ABC_DLL int Abc_NtkLevel(Abc_Ntk_t *pNtk)
Definition: abcDfs.c:1265
void Rwr_ManStop(Rwr_Man_t *p)
Definition: rwrMan.c:109
int Rwr_NodeRewrite(Rwr_Man_t *p, Cut_Man_t *pManCut, Abc_Obj_t *pNode, int fUpdateLevel, int fUseZeros, int fPlaceEnable)
FUNCTION DEFINITIONS ///.
Definition: rwrEva.c:59
static void Abc_NodeSetTravIdCurrent(Abc_Obj_t *p)
Definition: abc.h:409
void Rwr_ScoresClean(Rwr_Man_t *p)
Definition: rwrEva.c:504
static void Vec_PtrFree(Vec_Ptr_t *p)
Definition: vecPtr.h:223
static void Dec_GraphComplement(Dec_Graph_t *pGraph)
Definition: dec.h:388