Skip to content

Commit 165feaa

Browse files
committed
Updated to the latest version of ABC.
1 parent d40eb15 commit 165feaa

File tree

14 files changed

+1392
-44
lines changed

14 files changed

+1392
-44
lines changed

abc/src/aig/gia/gia.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,9 @@ struct Gia_Man_t_
241241
Vec_Int_t vSuppVars; // used variables
242242
Vec_Int_t vVarMap; // used variables
243243
Gia_Dat_t * pUData;
244+
// retiming data
245+
Vec_Str_t * vStopsF;
246+
Vec_Str_t * vStopsB;
244247
};
245248

246249

@@ -1527,7 +1530,7 @@ extern void Gia_ManPrintStatsMiter( Gia_Man_t * p, int fVerbose )
15271530
extern void Gia_ManSetRegNum( Gia_Man_t * p, int nRegs );
15281531
extern void Gia_ManReportImprovement( Gia_Man_t * p, Gia_Man_t * pNew );
15291532
extern void Gia_ManPrintNpnClasses( Gia_Man_t * p );
1530-
extern void Gia_ManDumpVerilog( Gia_Man_t * p, char * pFileName, Vec_Int_t * vObjs, int fVerBufs, int fInter );
1533+
extern void Gia_ManDumpVerilog( Gia_Man_t * p, char * pFileName, Vec_Int_t * vObjs, int fVerBufs, int fInter, int fInterComb, int fAssign );
15311534
/*=== giaMem.c ===========================================================*/
15321535
extern Gia_MmFixed_t * Gia_MmFixedStart( int nEntrySize, int nEntriesMax );
15331536
extern void Gia_MmFixedStop( Gia_MmFixed_t * p, int fVerbose );

abc/src/aig/gia/giaDup.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5708,8 +5708,8 @@ Gia_Man_t * Gia_ManBoundaryMiter( Gia_Man_t * p1, Gia_Man_t * p2, int fVerbose )
57085708
}
57095709
Gia_ManForEachCo( p2, pObj, i )
57105710
Gia_ManAppendCo( pNew, Gia_ObjFanin0Copy(pObj) );
5711-
Gia_ManForEachCo( p1, pObj, i )
5712-
Gia_ManAppendCo( pNew, Gia_ObjFanin0Copy(pObj) );
5711+
//Gia_ManForEachCo( p1, pObj, i )
5712+
// Gia_ManAppendCo( pNew, Gia_ObjFanin0Copy(pObj) );
57135713
Vec_IntForEachEntry( vLits, iLit, i )
57145714
Gia_ManAppendCo( pNew, iLit );
57155715
Vec_IntFree( vLits );

0 commit comments

Comments
 (0)