Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
d8d1f6c3
Commit
d8d1f6c3
authored
Feb 26, 2013
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
User-controlable SAT sweeper.
parent
7e293ebe
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
66 additions
and
71 deletions
+66
-71
src/aig/gia/gia.h
+10
-2
src/aig/gia/giaSweeper.c
+56
-69
No files found.
src/aig/gia/gia.h
View file @
d8d1f6c3
...
@@ -991,8 +991,16 @@ extern Gia_Man_t * Gia_ManStgRead( char * pFileName, int kHot, int fVerb
...
@@ -991,8 +991,16 @@ extern Gia_Man_t * Gia_ManStgRead( char * pFileName, int kHot, int fVerb
/*=== giaSweep.c ============================================================*/
/*=== giaSweep.c ============================================================*/
extern
Gia_Man_t
*
Gia_ManFraigSweep
(
Gia_Man_t
*
p
,
void
*
pPars
);
extern
Gia_Man_t
*
Gia_ManFraigSweep
(
Gia_Man_t
*
p
,
void
*
pPars
);
/*=== giaSweeper.c ============================================================*/
/*=== giaSweeper.c ============================================================*/
extern
Gia_Man_t
*
Gia_ManStartSweeper
();
extern
Gia_Man_t
*
Gia_SweeperStart
();
extern
void
Gia_ManStopSweeper
(
Gia_Man_t
*
p
);
extern
void
Gia_SweeperStop
(
Gia_Man_t
*
p
);
extern
int
Gia_SweeperProbeCreate
(
Gia_Man_t
*
p
,
int
iLit
);
extern
int
Gia_SweeperProbeFind
(
Gia_Man_t
*
p
,
int
iLit
);
extern
void
Gia_SweeperProbeDeref
(
Gia_Man_t
*
p
,
int
ProbeId
);
extern
int
Gia_SweeperProbeLit
(
Gia_Man_t
*
p
,
int
ProbeId
);
extern
int
Gia_SweeperCondPop
(
Gia_Man_t
*
p
);
extern
void
Gia_SweeperCondPush
(
Gia_Man_t
*
p
,
int
ProbeId
);
extern
Gia_Man_t
*
Gia_SweeperExtractUserLogic
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vProbeIds
,
Vec_Ptr_t
*
vOutNames
);
extern
int
Gia_SweeperCheckEquiv
(
Gia_Man_t
*
pGia
,
int
ProbeId1
,
int
ProbeId2
);
/*=== giaSwitch.c ============================================================*/
/*=== giaSwitch.c ============================================================*/
extern
float
Gia_ManEvaluateSwitching
(
Gia_Man_t
*
p
);
extern
float
Gia_ManEvaluateSwitching
(
Gia_Man_t
*
p
);
extern
float
Gia_ManComputeSwitching
(
Gia_Man_t
*
p
,
int
nFrames
,
int
nPref
,
int
fProbOne
);
extern
float
Gia_ManComputeSwitching
(
Gia_Man_t
*
p
,
int
nFrames
,
int
nPref
,
int
fProbOne
);
...
...
src/aig/gia/giaSweeper.c
View file @
d8d1f6c3
...
@@ -31,18 +31,18 @@ SAT sweeping/equivalence checking requires the following steps:
...
@@ -31,18 +31,18 @@ SAT sweeping/equivalence checking requires the following steps:
- nodes representing conditions to be used as constraints
- nodes representing conditions to be used as constraints
- nodes representing functions to be equivalence checked
- nodes representing functions to be equivalence checked
- nodes representing functions needed by the user at the end of SAT sweeping
- nodes representing functions needed by the user at the end of SAT sweeping
Creating new probe using Gia_
ManCreateProbe(): int Gia_ManCreateProb
e( Gia_Man_t * p, int iLit );
Creating new probe using Gia_
SweeperProbeCreate(): int Gia_SweeperProbeCreat
e( Gia_Man_t * p, int iLit );
Find existing probe using Gia_
ManFindProbe(): int Gia_ManFindProbe
( Gia_Man_t * p, int iLit );
Find existing probe using Gia_
SweeperProbeFind(): int Gia_SweeperProbeFind
( Gia_Man_t * p, int iLit );
If probe with this literal (iLit) exists, this procedure increments its reference counter and returns it.
If probe with this literal (iLit) exists, this procedure increments its reference counter and returns it.
If probe with this literal does not exist, it creates new probe and sets is reference counter to 1.
If probe with this literal does not exist, it creates new probe and sets is reference counter to 1.
Dereference probe using Gia_
ManDerefProbe(): void Gia_ManDerefProbe
( Gia_Man_t * p, int ProbeId );
Dereference probe using Gia_
SweeperProbeDeref(): void Gia_SweeperProbeDeref
( Gia_Man_t * p, int ProbeId );
Dereferences probe with the given ID. If ref counter become 0, recycles the logic cone of the given probe.
Dereferences probe with the given ID. If ref counter become 0, recycles the logic cone of the given probe.
Recycling of probe IDs can be added later.
Recycling of probe IDs can be added later.
Comments:
Comments:
- a probe is identified by its 0-based ID, which is returned by above procedures
- a probe is identified by its 0-based ID, which is returned by above procedures
- Adding/removing conditions on the current path by calling Gia_
ManCondPush() and Gia_Man
CondPop()
- Adding/removing conditions on the current path by calling Gia_
SweeperCondPush() and Gia_Sweeper
CondPop()
extern void Gia_
Man
CondPush( Gia_Man_t * p, int ProbeId );
extern void Gia_
Sweeper
CondPush( Gia_Man_t * p, int ProbeId );
extern void Gia_
Man
CondPop( Gia_Man_t * p );
extern void Gia_
Sweeper
CondPop( Gia_Man_t * p );
- Performing equivalence checking by calling Gia_ManCheckConst() and Gia_ManCheckEquiv()
- Performing equivalence checking by calling Gia_ManCheckConst() and Gia_ManCheckEquiv()
extern int Gia_ManCheckConst( Gia_Man_t * p, int ProbeId, int Const1 ); // Const1 can be 0 or 1
extern int Gia_ManCheckConst( Gia_Man_t * p, int ProbeId, int Const1 ); // Const1 can be 0 or 1
extern int Gia_ManCheckEquiv( Gia_Man_t * p, int ProbeId1, int ProbeId2 );
extern int Gia_ManCheckEquiv( Gia_Man_t * p, int ProbeId1, int ProbeId2 );
...
@@ -98,6 +98,8 @@ static inline int Swp_ManLit2Lit( Gia_Man_t * p, int Lit )
...
@@ -98,6 +98,8 @@ static inline int Swp_ManLit2Lit( Gia_Man_t * p, int Lit )
return
Abc_Lit2LitL
(
Vec_IntArray
(((
Swp_Man_t
*
)
p
->
pData
)
->
vId2Lit
),
Lit
);
return
Abc_Lit2LitL
(
Vec_IntArray
(((
Swp_Man_t
*
)
p
->
pData
)
->
vId2Lit
),
Lit
);
}
}
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
/// FUNCTION DEFINITIONS ///
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
...
@@ -157,7 +159,7 @@ static inline void Swp_ManStop( Gia_Man_t * pGia )
...
@@ -157,7 +159,7 @@ static inline void Swp_ManStop( Gia_Man_t * pGia )
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
Gia_Man_t
*
Gia_
ManStartSweeper
()
Gia_Man_t
*
Gia_
SweeperStart
()
{
{
Gia_Man_t
*
pGia
;
Gia_Man_t
*
pGia
;
pGia
=
Gia_ManStart
(
10000
);
pGia
=
Gia_ManStart
(
10000
);
...
@@ -166,7 +168,7 @@ Gia_Man_t * Gia_ManStartSweeper()
...
@@ -166,7 +168,7 @@ Gia_Man_t * Gia_ManStartSweeper()
pGia
->
fSweeper
=
1
;
pGia
->
fSweeper
=
1
;
return
pGia
;
return
pGia
;
}
}
void
Gia_
ManStopSweeper
(
Gia_Man_t
*
pGia
)
void
Gia_
SweeperStop
(
Gia_Man_t
*
pGia
)
{
{
pGia
->
fSweeper
=
0
;
pGia
->
fSweeper
=
0
;
Swp_ManStop
(
pGia
);
Swp_ManStop
(
pGia
);
...
@@ -185,14 +187,8 @@ void Gia_ManStopSweeper( Gia_Man_t * pGia )
...
@@ -185,14 +187,8 @@ void Gia_ManStopSweeper( Gia_Man_t * pGia )
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
// returns literal of the probe
int
Gia_ManProbeLit
(
Gia_Man_t
*
p
,
int
ProbeId
)
{
Swp_Man_t
*
pSwp
=
(
Swp_Man_t
*
)
p
->
pData
;
return
Vec_IntEntry
(
pSwp
->
vProbes
,
ProbeId
);
}
// create new probe
// create new probe
int
Gia_
ManCreateProb
e
(
Gia_Man_t
*
p
,
int
iLit
)
int
Gia_
SweeperProbeCreat
e
(
Gia_Man_t
*
p
,
int
iLit
)
{
{
Swp_Man_t
*
pSwp
=
(
Swp_Man_t
*
)
p
->
pData
;
Swp_Man_t
*
pSwp
=
(
Swp_Man_t
*
)
p
->
pData
;
int
ProbeId
=
Vec_IntSize
(
pSwp
->
vProbes
);
int
ProbeId
=
Vec_IntSize
(
pSwp
->
vProbes
);
...
@@ -203,25 +199,31 @@ int Gia_ManCreateProbe( Gia_Man_t * p, int iLit )
...
@@ -203,25 +199,31 @@ int Gia_ManCreateProbe( Gia_Man_t * p, int iLit )
}
}
// if probe with this literal (iLit) exists, this procedure increments its reference counter and returns it.
// if probe with this literal (iLit) exists, this procedure increments its reference counter and returns it.
// if probe with this literal does not exist, it creates new probe and sets is reference counter to 1.
// if probe with this literal does not exist, it creates new probe and sets is reference counter to 1.
int
Gia_
ManFindProbe
(
Gia_Man_t
*
p
,
int
iLit
)
int
Gia_
SweeperProbeFind
(
Gia_Man_t
*
p
,
int
iLit
)
{
{
Swp_Man_t
*
pSwp
=
(
Swp_Man_t
*
)
p
->
pData
;
Swp_Man_t
*
pSwp
=
(
Swp_Man_t
*
)
p
->
pData
;
if
(
iLit
>=
Vec_IntSize
(
pSwp
->
vLit2Prob
)
||
Vec_IntEntry
(
pSwp
->
vLit2Prob
,
iLit
)
>=
0
)
if
(
iLit
>=
Vec_IntSize
(
pSwp
->
vLit2Prob
)
||
Vec_IntEntry
(
pSwp
->
vLit2Prob
,
iLit
)
>=
0
)
return
Vec_IntEntry
(
pSwp
->
vLit2Prob
,
iLit
);
return
Vec_IntEntry
(
pSwp
->
vLit2Prob
,
iLit
);
return
Gia_
ManCreateProb
e
(
p
,
iLit
);
return
Gia_
SweeperProbeCreat
e
(
p
,
iLit
);
}
}
// dereferences the probe
// dereferences the probe
void
Gia_
ManDerefProbe
(
Gia_Man_t
*
p
,
int
ProbeId
)
void
Gia_
SweeperProbeDeref
(
Gia_Man_t
*
p
,
int
ProbeId
)
{
{
Swp_Man_t
*
pSwp
=
(
Swp_Man_t
*
)
p
->
pData
;
Swp_Man_t
*
pSwp
=
(
Swp_Man_t
*
)
p
->
pData
;
assert
(
Vec_IntEntry
(
pSwp
->
vProbRefs
,
ProbeId
)
>
0
);
assert
(
Vec_IntEntry
(
pSwp
->
vProbRefs
,
ProbeId
)
>
0
);
Vec_IntAddToEntry
(
pSwp
->
vProbRefs
,
ProbeId
,
-
1
);
Vec_IntAddToEntry
(
pSwp
->
vProbRefs
,
ProbeId
,
-
1
);
if
(
Vec_IntEntry
(
pSwp
->
vProbRefs
,
ProbeId
)
==
0
)
if
(
Vec_IntEntry
(
pSwp
->
vProbRefs
,
ProbeId
)
==
0
)
{
{
int
iLit
=
Gia_
Man
ProbeLit
(
p
,
ProbeId
);
int
iLit
=
Gia_
Sweeper
ProbeLit
(
p
,
ProbeId
);
Vec_IntWriteEntry
(
pSwp
->
vLit2Prob
,
iLit
,
-
1
);
Vec_IntWriteEntry
(
pSwp
->
vLit2Prob
,
iLit
,
-
1
);
}
}
}
}
// returns literal associated with the probe
int
Gia_SweeperProbeLit
(
Gia_Man_t
*
p
,
int
ProbeId
)
{
Swp_Man_t
*
pSwp
=
(
Swp_Man_t
*
)
p
->
pData
;
return
Vec_IntEntry
(
pSwp
->
vProbes
,
ProbeId
);
}
/**Function*************************************************************
/**Function*************************************************************
...
@@ -234,13 +236,13 @@ void Gia_ManDerefProbe( Gia_Man_t * p, int ProbeId )
...
@@ -234,13 +236,13 @@ void Gia_ManDerefProbe( Gia_Man_t * p, int ProbeId )
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
void
Gia_
Man
CondPush
(
Gia_Man_t
*
p
,
int
ProbeId
)
void
Gia_
Sweeper
CondPush
(
Gia_Man_t
*
p
,
int
ProbeId
)
{
{
Swp_Man_t
*
pSwp
=
(
Swp_Man_t
*
)
p
->
pData
;
Swp_Man_t
*
pSwp
=
(
Swp_Man_t
*
)
p
->
pData
;
Vec_IntPush
(
pSwp
->
vCondProbes
,
ProbeId
);
Vec_IntPush
(
pSwp
->
vCondProbes
,
ProbeId
);
Vec_IntPush
(
pSwp
->
vCondLits
,
Gia_
Man
ProbeLit
(
p
,
ProbeId
)
);
Vec_IntPush
(
pSwp
->
vCondLits
,
Gia_
Sweeper
ProbeLit
(
p
,
ProbeId
)
);
}
}
int
Gia_
Man
CondPop
(
Gia_Man_t
*
p
)
int
Gia_
Sweeper
CondPop
(
Gia_Man_t
*
p
)
{
{
Swp_Man_t
*
pSwp
=
(
Swp_Man_t
*
)
p
->
pData
;
Swp_Man_t
*
pSwp
=
(
Swp_Man_t
*
)
p
->
pData
;
int
ProbId
=
Vec_IntPop
(
pSwp
->
vCondProbes
);
int
ProbId
=
Vec_IntPop
(
pSwp
->
vCondProbes
);
...
@@ -259,7 +261,7 @@ int Gia_ManCondPop( Gia_Man_t * p )
...
@@ -259,7 +261,7 @@ int Gia_ManCondPop( Gia_Man_t * p )
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
void
Gia_ManExtract_rec
(
Gia_Man_t
*
p
,
Gia_Obj_t
*
pObj
,
Vec_Int_t
*
vObjIds
)
static
void
Gia_ManExtract_rec
(
Gia_Man_t
*
p
,
Gia_Obj_t
*
pObj
,
Vec_Int_t
*
vObjIds
)
{
{
if
(
!
Gia_ObjIsAnd
(
pObj
)
)
if
(
!
Gia_ObjIsAnd
(
pObj
)
)
return
;
return
;
...
@@ -270,17 +272,18 @@ void Gia_ManExtract_rec( Gia_Man_t * p, Gia_Obj_t * pObj, Vec_Int_t * vObjIds )
...
@@ -270,17 +272,18 @@ void Gia_ManExtract_rec( Gia_Man_t * p, Gia_Obj_t * pObj, Vec_Int_t * vObjIds )
Gia_ManExtract_rec
(
p
,
Gia_ObjFanin1
(
pObj
),
vObjIds
);
Gia_ManExtract_rec
(
p
,
Gia_ObjFanin1
(
pObj
),
vObjIds
);
Vec_IntPush
(
vObjIds
,
Gia_ObjId
(
p
,
pObj
)
);
Vec_IntPush
(
vObjIds
,
Gia_ObjId
(
p
,
pObj
)
);
}
}
Gia_Man_t
*
Gia_
ManExtractUserLogic
(
Gia_Man_t
*
p
,
int
*
pProbeIds
,
int
nProbeId
s
)
Gia_Man_t
*
Gia_
SweeperExtractUserLogic
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vProbeIds
,
Vec_Ptr_t
*
vOutName
s
)
{
{
Gia_Man_t
*
pNew
;
Gia_Man_t
*
pNew
;
Gia_Obj_t
*
pObj
;
Gia_Obj_t
*
pObj
;
Vec_Int_t
*
vObjIds
;
Vec_Int_t
*
vObjIds
;
int
i
;
int
i
,
ProbeId
;
vObjIds
=
Vec_IntAlloc
(
1000
);
assert
(
Vec_IntSize
(
vProbeIds
)
==
Vec_PtrSize
(
vOutNames
)
);
Gia_ManIncrementTravId
(
p
);
Gia_ManIncrementTravId
(
p
);
for
(
i
=
0
;
i
<
nProbeIds
;
i
++
)
vObjIds
=
Vec_IntAlloc
(
1000
);
Vec_IntForEachEntry
(
vProbeIds
,
ProbeId
,
i
)
{
{
pObj
=
Gia_Lit2Obj
(
p
,
Gia_
ManProbeLit
(
p
,
pProbeIds
[
i
]
)
);
pObj
=
Gia_Lit2Obj
(
p
,
Gia_
SweeperProbeLit
(
p
,
ProbeId
)
);
Gia_ManExtract_rec
(
p
,
Gia_Regular
(
pObj
),
vObjIds
);
Gia_ManExtract_rec
(
p
,
Gia_Regular
(
pObj
),
vObjIds
);
}
}
// create new manager
// create new manager
...
@@ -293,17 +296,20 @@ Gia_Man_t * Gia_ManExtractUserLogic( Gia_Man_t * p, int * pProbeIds, int nProbeI
...
@@ -293,17 +296,20 @@ Gia_Man_t * Gia_ManExtractUserLogic( Gia_Man_t * p, int * pProbeIds, int nProbeI
Gia_ManForEachObjVec
(
vObjIds
,
p
,
pObj
,
i
)
Gia_ManForEachObjVec
(
vObjIds
,
p
,
pObj
,
i
)
pObj
->
Value
=
Gia_ManAppendAnd
(
pNew
,
Gia_ObjFanin0Copy
(
pObj
),
Gia_ObjFanin1Copy
(
pObj
)
);
pObj
->
Value
=
Gia_ManAppendAnd
(
pNew
,
Gia_ObjFanin0Copy
(
pObj
),
Gia_ObjFanin1Copy
(
pObj
)
);
Vec_IntFree
(
vObjIds
);
Vec_IntFree
(
vObjIds
);
for
(
i
=
0
;
i
<
nProbeIds
;
i
++
)
Vec_IntForEachEntry
(
vProbeIds
,
ProbeId
,
i
)
{
{
pObj
=
Gia_Lit2Obj
(
p
,
Gia_
ManProbeLit
(
p
,
pProbeIds
[
i
]
)
);
pObj
=
Gia_Lit2Obj
(
p
,
Gia_
SweeperProbeLit
(
p
,
ProbeId
)
);
Gia_ManAppendCo
(
pNew
,
Gia_ObjFanin0Copy
(
Gia_Regular
(
pObj
))
^
Gia_IsComplement
(
pObj
)
);
Gia_ManAppendCo
(
pNew
,
Gia_ObjFanin0Copy
(
Gia_Regular
(
pObj
))
^
Gia_IsComplement
(
pObj
)
);
}
}
// copy names if present
if
(
p
->
vNamesIn
)
pNew
->
vNamesIn
=
Vec_PtrDup
(
p
->
vNamesIn
);
if
(
vOutNames
)
pNew
->
vNamesOut
=
Vec_PtrDup
(
vOutNames
);
return
pNew
;
return
pNew
;
}
}
//#if 0
/**Function*************************************************************
/**Function*************************************************************
Synopsis [Addes clauses to the solver.]
Synopsis [Addes clauses to the solver.]
...
@@ -315,7 +321,7 @@ Gia_Man_t * Gia_ManExtractUserLogic( Gia_Man_t * p, int * pProbeIds, int nProbeI
...
@@ -315,7 +321,7 @@ Gia_Man_t * Gia_ManExtractUserLogic( Gia_Man_t * p, int * pProbeIds, int nProbeI
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
void
Gia_ManAddClausesMux
(
Gia_Man_t
*
pGia
,
Gia_Obj_t
*
pNode
)
static
void
Gia_ManAddClausesMux
(
Gia_Man_t
*
pGia
,
Gia_Obj_t
*
pNode
)
{
{
Swp_Man_t
*
p
=
(
Swp_Man_t
*
)
pGia
->
pData
;
Swp_Man_t
*
p
=
(
Swp_Man_t
*
)
pGia
->
pData
;
Gia_Obj_t
*
pNodeI
,
*
pNodeT
,
*
pNodeE
;
Gia_Obj_t
*
pNodeI
,
*
pNodeT
,
*
pNodeE
;
...
@@ -395,7 +401,7 @@ void Gia_ManAddClausesMux( Gia_Man_t * pGia, Gia_Obj_t * pNode )
...
@@ -395,7 +401,7 @@ void Gia_ManAddClausesMux( Gia_Man_t * pGia, Gia_Obj_t * pNode )
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
void
Gia_ManAddClausesSuper
(
Gia_Man_t
*
pGia
,
Gia_Obj_t
*
pNode
,
Vec_Int_t
*
vSuper
)
static
void
Gia_ManAddClausesSuper
(
Gia_Man_t
*
pGia
,
Gia_Obj_t
*
pNode
,
Vec_Int_t
*
vSuper
)
{
{
Swp_Man_t
*
p
=
(
Swp_Man_t
*
)
pGia
->
pData
;
Swp_Man_t
*
p
=
(
Swp_Man_t
*
)
pGia
->
pData
;
int
i
,
RetValue
,
Lit
,
LitNode
,
pLits
[
2
];
int
i
,
RetValue
,
Lit
,
LitNode
,
pLits
[
2
];
...
@@ -431,7 +437,7 @@ void Gia_ManAddClausesSuper( Gia_Man_t * pGia, Gia_Obj_t * pNode, Vec_Int_t * vS
...
@@ -431,7 +437,7 @@ void Gia_ManAddClausesSuper( Gia_Man_t * pGia, Gia_Obj_t * pNode, Vec_Int_t * vS
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
void
Gia_ManCollectSuper_rec
(
Gia_Man_t
*
p
,
Gia_Obj_t
*
pObj
,
Vec_Int_t
*
vSuper
)
static
void
Gia_ManCollectSuper_rec
(
Gia_Man_t
*
p
,
Gia_Obj_t
*
pObj
,
Vec_Int_t
*
vSuper
)
{
{
// stop at complements, shared, PIs, and MUXes
// stop at complements, shared, PIs, and MUXes
if
(
Gia_IsComplement
(
pObj
)
||
pObj
->
fMark0
||
Gia_ObjIsCi
(
pObj
)
||
Gia_ObjIsMuxType
(
pObj
)
)
if
(
Gia_IsComplement
(
pObj
)
||
pObj
->
fMark0
||
Gia_ObjIsCi
(
pObj
)
||
Gia_ObjIsMuxType
(
pObj
)
)
...
@@ -442,7 +448,7 @@ void Gia_ManCollectSuper_rec( Gia_Man_t * p, Gia_Obj_t * pObj, Vec_Int_t * vSupe
...
@@ -442,7 +448,7 @@ void Gia_ManCollectSuper_rec( Gia_Man_t * p, Gia_Obj_t * pObj, Vec_Int_t * vSupe
Gia_ManCollectSuper_rec
(
p
,
Gia_ObjChild0
(
pObj
),
vSuper
);
Gia_ManCollectSuper_rec
(
p
,
Gia_ObjChild0
(
pObj
),
vSuper
);
Gia_ManCollectSuper_rec
(
p
,
Gia_ObjChild1
(
pObj
),
vSuper
);
Gia_ManCollectSuper_rec
(
p
,
Gia_ObjChild1
(
pObj
),
vSuper
);
}
}
void
Gia_ManCollectSuper
(
Gia_Man_t
*
p
,
Gia_Obj_t
*
pObj
,
Vec_Int_t
*
vSuper
)
static
void
Gia_ManCollectSuper
(
Gia_Man_t
*
p
,
Gia_Obj_t
*
pObj
,
Vec_Int_t
*
vSuper
)
{
{
assert
(
!
Gia_IsComplement
(
pObj
)
);
assert
(
!
Gia_IsComplement
(
pObj
)
);
assert
(
Gia_ObjIsAnd
(
pObj
)
);
assert
(
Gia_ObjIsAnd
(
pObj
)
);
...
@@ -462,7 +468,7 @@ void Gia_ManCollectSuper( Gia_Man_t * p, Gia_Obj_t * pObj, Vec_Int_t * vSuper )
...
@@ -462,7 +468,7 @@ void Gia_ManCollectSuper( Gia_Man_t * p, Gia_Obj_t * pObj, Vec_Int_t * vSuper )
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
void
Gia_ManObjAddToFrontier
(
Gia_Man_t
*
pGia
,
int
Id
,
Vec_Int_t
*
vFront
)
static
void
Gia_ManObjAddToFrontier
(
Gia_Man_t
*
pGia
,
int
Id
,
Vec_Int_t
*
vFront
)
{
{
Swp_Man_t
*
p
=
(
Swp_Man_t
*
)
pGia
->
pData
;
Swp_Man_t
*
p
=
(
Swp_Man_t
*
)
pGia
->
pData
;
Gia_Obj_t
*
pObj
;
Gia_Obj_t
*
pObj
;
...
@@ -476,7 +482,7 @@ void Gia_ManObjAddToFrontier( Gia_Man_t * pGia, int Id, Vec_Int_t * vFront )
...
@@ -476,7 +482,7 @@ void Gia_ManObjAddToFrontier( Gia_Man_t * pGia, int Id, Vec_Int_t * vFront )
if
(
Gia_ObjIsAnd
(
pObj
)
)
if
(
Gia_ObjIsAnd
(
pObj
)
)
Vec_IntPush
(
vFront
,
Id
);
Vec_IntPush
(
vFront
,
Id
);
}
}
void
Gia_ManCnfNodeAddToSolver
(
Gia_Man_t
*
p
,
int
NodeId
)
static
void
Gia_ManCnfNodeAddToSolver
(
Gia_Man_t
*
p
,
int
NodeId
)
{
{
Vec_Int_t
*
vFront
,
*
vFanins
;
Vec_Int_t
*
vFront
,
*
vFanins
;
Gia_Obj_t
*
pNode
;
Gia_Obj_t
*
pNode
;
...
@@ -530,11 +536,13 @@ void Gia_ManCnfNodeAddToSolver( Gia_Man_t * p, int NodeId )
...
@@ -530,11 +536,13 @@ void Gia_ManCnfNodeAddToSolver( Gia_Man_t * p, int NodeId )
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
int
Gia_
ManNodesAreEquiv
(
Gia_Man_t
*
pGia
,
int
iOld
,
int
iNew
)
int
Gia_
SweeperCheckEquiv
(
Gia_Man_t
*
pGia
,
int
Probe1
,
int
Probe2
)
{
{
Swp_Man_t
*
p
=
(
Swp_Man_t
*
)
pGia
->
pData
;
Swp_Man_t
*
p
=
(
Swp_Man_t
*
)
pGia
->
pData
;
Gia_Obj_t
*
pOld
=
Gia_Lit2Obj
(
pGia
,
iOld
);
int
iLitOld
=
Gia_SweeperProbeLit
(
pGia
,
Probe1
);
Gia_Obj_t
*
pNew
=
Gia_Lit2Obj
(
pGia
,
iNew
);
int
iLitNew
=
Gia_SweeperProbeLit
(
pGia
,
Probe2
);
Gia_Obj_t
*
pOld
=
Gia_Lit2Obj
(
pGia
,
iLitOld
);
Gia_Obj_t
*
pNew
=
Gia_Lit2Obj
(
pGia
,
iLitNew
);
int
Lit
,
RetValue
,
RetValue1
;
int
Lit
,
RetValue
,
RetValue1
;
clock_t
clk
;
clock_t
clk
;
p
->
nSatCalls
++
;
p
->
nSatCalls
++
;
...
@@ -544,16 +552,16 @@ int Gia_ManNodesAreEquiv( Gia_Man_t * pGia, int iOld, int iNew )
...
@@ -544,16 +552,16 @@ int Gia_ManNodesAreEquiv( Gia_Man_t * pGia, int iOld, int iNew )
assert
(
p
->
pSat
!=
NULL
);
assert
(
p
->
pSat
!=
NULL
);
// if the nodes do not have SAT variables, allocate them
// if the nodes do not have SAT variables, allocate them
Gia_ManCnfNodeAddToSolver
(
pGia
,
Abc_Lit2Var
(
iOld
)
);
Gia_ManCnfNodeAddToSolver
(
pGia
,
Abc_Lit2Var
(
i
Lit
Old
)
);
Gia_ManCnfNodeAddToSolver
(
pGia
,
Abc_Lit2Var
(
iNew
)
);
Gia_ManCnfNodeAddToSolver
(
pGia
,
Abc_Lit2Var
(
i
Lit
New
)
);
sat_solver_compress
(
p
->
pSat
);
sat_solver_compress
(
p
->
pSat
);
// solve under assumptions
// solve under assumptions
// A = 1; B = 0 OR A = 1; B = 1
// A = 1; B = 0 OR A = 1; B = 1
Lit
=
Swp_ManLit2Lit
(
pGia
,
iOld
);
Lit
=
Swp_ManLit2Lit
(
pGia
,
i
Lit
Old
);
Vec_IntPush
(
p
->
vCondLits
,
Lit
);
Vec_IntPush
(
p
->
vCondLits
,
Lit
);
Lit
=
Swp_ManLit2Lit
(
pGia
,
iNew
);
Lit
=
Swp_ManLit2Lit
(
pGia
,
i
Lit
New
);
Vec_IntPush
(
p
->
vCondLits
,
Abc_LitNot
(
Lit
)
);
Vec_IntPush
(
p
->
vCondLits
,
Abc_LitNot
(
Lit
)
);
clk
=
clock
();
clk
=
clock
();
...
@@ -587,7 +595,7 @@ p->timeSatUndec += clock() - clk;
...
@@ -587,7 +595,7 @@ p->timeSatUndec += clock() - clk;
}
}
// if the old node was constant 0, we already know the answer
// if the old node was constant 0, we already know the answer
if
(
Gia_ManIsConstLit
(
iNew
)
)
if
(
Gia_ManIsConstLit
(
i
Lit
New
)
)
{
{
p
->
nSatProofs
++
;
p
->
nSatProofs
++
;
return
1
;
return
1
;
...
@@ -595,10 +603,10 @@ p->timeSatUndec += clock() - clk;
...
@@ -595,10 +603,10 @@ p->timeSatUndec += clock() - clk;
// solve under assumptions
// solve under assumptions
// A = 0; B = 1 OR A = 0; B = 0
// A = 0; B = 1 OR A = 0; B = 0
Lit
=
Swp_ManLit2Lit
(
pGia
,
iOld
);
Lit
=
Swp_ManLit2Lit
(
pGia
,
i
Lit
Old
);
Vec_IntPush
(
p
->
vCondLits
,
Abc_LitNot
(
Lit
)
);
Vec_IntPush
(
p
->
vCondLits
,
Abc_LitNot
(
Lit
)
);
Lit
=
Swp_ManLit2Lit
(
pGia
,
iNew
);
Lit
=
Swp_ManLit2Lit
(
pGia
,
i
Lit
New
);
Vec_IntPush
(
p
->
vCondLits
,
Lit
);
Vec_IntPush
(
p
->
vCondLits
,
Lit
);
clk
=
clock
();
clk
=
clock
();
...
@@ -635,28 +643,7 @@ p->timeSatUndec += clock() - clk;
...
@@ -635,28 +643,7 @@ p->timeSatUndec += clock() - clk;
return
1
;
return
1
;
}
}
//#endif
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
int
Gia_ManCheckConst
(
Gia_Man_t
*
p
,
int
ProbeId
,
int
Const1
)
{
return
-
1
;
}
int
Gia_ManCheckEquiv
(
Gia_Man_t
*
p
,
int
ProbeId1
,
int
ProbeId2
)
{
return
-
1
;
}
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
/// END OF FILE ///
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment