summaryrefslogtreecommitdiffstats
path: root/src/aig/dar/darCore.c
blob: 9f0f58f6a41da636d0cb80790defe2784edf056a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/**CFile****************************************************************

  FileName    [darCore.c]

  SystemName  [ABC: Logic synthesis and verification system.]

  PackageName [DAG-aware AIG rewriting.]

  Synopsis    [Core of the rewriting package.]

  Author      [Alan Mishchenko]
  
  Affiliation [UC Berkeley]

  Date        [Ver. 1.0. Started - April 28, 2007.]

  Revision    [$Id: darCore.c,v 1.00 2007/04/28 00:00:00 alanmi Exp $]

***********************************************************************/

#include "dar.h"

////////////////////////////////////////////////////////////////////////
///                        DECLARATIONS                              ///
////////////////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////////////////
///                     FUNCTION DEFINITIONS                         ///
////////////////////////////////////////////////////////////////////////

/**Function*************************************************************

  Synopsis    []

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
int Dar_ManRewrite( Dar_Man_t * p )
{
    ProgressBar * pProgress;
    Dar_Obj_t * pObj, * pObjNew;
    int i, k, nNodesOld, nNodeBefore, nNodeAfter, Required;
    int clk = 0, clkStart = clock();
    // remove dangling nodes
    Dar_ManCleanup( p );
    // set elementary cuts for the PIs
    Dar_ManSetupPis( p );
//    if ( p->pPars->fUpdateLevel )
//        Dar_NtkStartReverseLevels( p );
    // resynthesize each node once
    nNodesOld = Vec_PtrSize( p->vObjs );
    pProgress = Extra_ProgressBarStart( stdout, nNodesOld );
    Dar_ManForEachObj( p, pObj, i )
    {
        Extra_ProgressBarUpdate( pProgress, i, NULL );
        if ( !Dar_ObjIsNode(pObj) )
            continue;
        if ( i > nNodesOld )
            break;
        // compute cuts for the node
        Dar_ObjComputeCuts_rec( p, pObj );
        // go through the cuts of this node
        Required = 1000000;
        p->GainBest = -1;
        for ( k = 1; k < (int)pObj->nCuts; k++ )
            Dar_LibEval( p, pObj, (Dar_Cut_t *)pObj->pData + k, Required );
        // check the best gain
        if ( !(p->GainBest > 0 || p->GainBest == 0 && p->pPars->fUseZeros) )
            continue;
        // if we end up here, a rewriting step is accepted
        nNodeBefore = Dar_ManNodeNum( p );
        pObjNew = Dar_LibBuildBest( p );
        pObjNew = Dar_NotCond( pObjNew, pObjNew->fPhase ^ pObj->fPhase );
        // remove the old nodes
        Dar_ObjReplace( p, pObj, pObjNew );
        // compare the gains
        nNodeAfter = Dar_ManNodeNum( p );
        assert( p->GainBest == nNodeBefore - nNodeAfter );
        assert( (int)pObjNew->Level <= Required );
    }
    Extra_ProgressBarStop( pProgress );
    Dar_ManCutsFree( p );
    // put the nodes into the DFS order and reassign their IDs
//    Dar_NtkReassignIds( p );

    // fix the levels
//    if ( p->pPars->fUpdateLevel )
//        Dar_NtkStopReverseLevels( p );
    // check
    if ( !Dar_ManCheck( p ) )
    {
        printf( "Dar_ManRewrite: The network check has failed.\n" );
        return 0;
    }
    return 1;
}

////////////////////////////////////////////////////////////////////////
///                       END OF FILE                                ///
////////////////////////////////////////////////////////////////////////