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
5ca4f3cf
Commit
5ca4f3cf
authored
Sep 07, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating &gla_refine to perform suffic refinement.
parent
548e0419
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
82 additions
and
14 deletions
+82
-14
src/aig/gia/giaAbsOut.c
+65
-10
src/base/abci/abc.c
+17
-4
No files found.
src/aig/gia/giaAbsOut.c
View file @
5ca4f3cf
...
...
@@ -289,6 +289,48 @@ Vec_Int_t * Gia_ManGetStateAndCheckCex( Gia_Man_t * pAig, Abc_Cex_t * p, int iFr
/**Function*************************************************************
Synopsis [Verify counter-example starting in the given timeframe.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
void
Gia_ManCheckCex
(
Gia_Man_t
*
pAig
,
Abc_Cex_t
*
p
,
int
iFrame
)
{
Gia_Obj_t
*
pObj
,
*
pObjRi
,
*
pObjRo
;
int
RetValue
,
i
,
k
,
iBit
=
0
;
assert
(
iFrame
>=
0
&&
iFrame
<=
p
->
iFrame
);
Gia_ManCleanMark0
(
pAig
);
Gia_ManForEachRo
(
pAig
,
pObj
,
i
)
pObj
->
fMark0
=
Abc_InfoHasBit
(
p
->
pData
,
iBit
++
);
for
(
i
=
iFrame
,
iBit
+=
Gia_ManPiNum
(
pAig
)
*
iFrame
;
i
<=
p
->
iFrame
;
i
++
)
{
Gia_ManForEachPi
(
pAig
,
pObj
,
k
)
pObj
->
fMark0
=
Abc_InfoHasBit
(
p
->
pData
,
iBit
++
);
Gia_ManForEachAnd
(
pAig
,
pObj
,
k
)
pObj
->
fMark0
=
(
Gia_ObjFanin0
(
pObj
)
->
fMark0
^
Gia_ObjFaninC0
(
pObj
))
&
(
Gia_ObjFanin1
(
pObj
)
->
fMark0
^
Gia_ObjFaninC1
(
pObj
));
Gia_ManForEachCo
(
pAig
,
pObj
,
k
)
pObj
->
fMark0
=
Gia_ObjFanin0
(
pObj
)
->
fMark0
^
Gia_ObjFaninC0
(
pObj
);
if
(
i
==
p
->
iFrame
)
break
;
Gia_ManForEachRiRo
(
pAig
,
pObjRi
,
pObjRo
,
k
)
pObjRo
->
fMark0
=
pObjRi
->
fMark0
;
}
assert
(
iBit
==
p
->
nBits
);
RetValue
=
Gia_ManPo
(
pAig
,
p
->
iPo
)
->
fMark0
;
Gia_ManCleanMark0
(
pAig
);
if
(
RetValue
==
1
)
printf
(
"CEX holds for the transformed model.
\n
"
);
else
printf
(
"CEX does not hold for the transformed model.
\n
"
);
}
/**Function*************************************************************
Synopsis []
Description []
...
...
@@ -300,11 +342,12 @@ Vec_Int_t * Gia_ManGetStateAndCheckCex( Gia_Man_t * pAig, Abc_Cex_t * p, int iFr
***********************************************************************/
Gia_Man_t
*
Gia_ManTransformFlops
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vFlops
,
Vec_Int_t
*
vInit
)
{
Vec_
In
t_t
*
vInitNew
;
Vec_
Bi
t_t
*
vInitNew
;
Gia_Man_t
*
pNew
;
Gia_Obj_t
*
pObj
;
int
i
,
iFlopId
;
vInitNew
=
Vec_IntStart
(
Gia_ManRegNum
(
p
)
);
assert
(
Vec_IntSize
(
vInit
)
==
Vec_IntSize
(
vFlops
)
);
vInitNew
=
Vec_BitStart
(
Gia_ManRegNum
(
p
)
);
Gia_ManForEachObjVec
(
vFlops
,
p
,
pObj
,
i
)
{
assert
(
Gia_ObjIsRo
(
p
,
pObj
)
);
...
...
@@ -312,10 +355,10 @@ Gia_Man_t * Gia_ManTransformFlops( Gia_Man_t * p, Vec_Int_t * vFlops, Vec_Int_t
continue
;
iFlopId
=
Gia_ObjCioId
(
pObj
)
-
Gia_ManPiNum
(
p
);
assert
(
iFlopId
>=
0
&&
iFlopId
<
Gia_ManRegNum
(
p
)
);
Vec_
In
tWriteEntry
(
vInitNew
,
iFlopId
,
1
);
Vec_
Bi
tWriteEntry
(
vInitNew
,
iFlopId
,
1
);
}
pNew
=
Gia_ManDupFlip
(
p
,
Vec_
In
tArray
(
vInitNew
)
);
Vec_
In
tFree
(
vInitNew
);
pNew
=
Gia_ManDupFlip
(
p
,
Vec_
Bi
tArray
(
vInitNew
)
);
Vec_
Bi
tFree
(
vInitNew
);
return
pNew
;
}
...
...
@@ -330,7 +373,7 @@ Gia_Man_t * Gia_ManTransformFlops( Gia_Man_t * p, Vec_Int_t * vFlops, Vec_Int_t
SeeAlso []
***********************************************************************/
int
Gia_ManNewRefine
(
Gia_Man_t
*
p
,
Abc_Cex_t
*
pCex
,
int
iFrameStart
,
int
fVerbose
)
int
Gia_ManNewRefine
(
Gia_Man_t
*
p
,
Abc_Cex_t
*
pCex
,
int
iFrameStart
,
int
iFrameExtra
,
int
fVerbose
)
{
Gia_Man_t
*
pAbs
,
*
pNew
;
Vec_Int_t
*
vPis
,
*
vPPis
,
*
vFlops
,
*
vInit
;
...
...
@@ -342,6 +385,7 @@ int Gia_ManNewRefine( Gia_Man_t * p, Abc_Cex_t * pCex, int iFrameStart, int fVer
Abc_Print
(
1
,
"Gia_ManNewRefine(): Abstraction gate map is missing.
\n
"
);
return
-
1
;
}
Abc_Print
(
1
,
"Refining with %d-frame CEX, starting in frame %d, with %d extra frames.
\n
"
,
pCex
->
iFrame
,
iFrameStart
,
iFrameExtra
);
// derive abstraction
pAbs
=
Gia_ManDupAbsGates
(
p
,
p
->
vGateClasses
);
Gia_ManStop
(
pAbs
);
...
...
@@ -365,19 +409,31 @@ int Gia_ManNewRefine( Gia_Man_t * p, Abc_Cex_t * pCex, int iFrameStart, int fVer
// get inputs
Gia_ManGlaCollect
(
p
,
p
->
vGateClasses
,
&
vPis
,
&
vPPis
,
&
vFlops
,
NULL
);
assert
(
Vec_IntSize
(
vPis
)
+
Vec_IntSize
(
vPPis
)
==
Gia_ManPiNum
(
pAbs
)
);
Gia_ManStop
(
pAbs
);
//Vec_IntPrint( vFlops );
//Vec_IntPrint( vInit );
// transform the manager to have new init state
pNew
=
Gia_ManTransformFlops
(
p
,
vFlops
,
vInit
);
assert
(
pNew
->
vGateClasses
==
NULL
);
pNew
->
vGateClasses
=
Vec_IntDup
(
p
->
vGateClasses
);
Vec_IntFree
(
vPis
);
Vec_IntFree
(
vPPis
);
Vec_IntFree
(
vFlops
);
Vec_IntFree
(
vInit
);
// verify abstraction
/*
{
Gia_Man_t * pAbs = Gia_ManDupAbsGates( pNew, p->vGateClasses );
Gia_ManCheckCex( pAbs, pCex, iFrameStart );
Gia_ManStop( pAbs );
}
*/
// transfer abstraction
assert
(
pNew
->
vGateClasses
==
NULL
);
pNew
->
vGateClasses
=
Vec_IntDup
(
p
->
vGateClasses
);
// perform abstraction for the new AIG
{
Gia_ParVta_t
Pars
,
*
pPars
=
&
Pars
;
Gia_VtaSetDefaultParams
(
pPars
);
pPars
->
nFramesMax
=
pCex
->
iFrame
-
iFrameStart
+
1
;
pPars
->
nFramesMax
=
pCex
->
iFrame
-
iFrameStart
+
1
+
iFrameExtra
;
pPars
->
fVerbose
=
fVerbose
;
RetValue
=
Ga2_ManPerform
(
pNew
,
pPars
);
}
...
...
@@ -387,7 +443,6 @@ int Gia_ManNewRefine( Gia_Man_t * p, Abc_Cex_t * pCex, int iFrameStart, int fVer
pNew
->
vGateClasses
=
NULL
;
// cleanup
Gia_ManStop
(
pNew
);
Gia_ManStop
(
pAbs
);
return
-
1
;
}
...
...
src/base/abci/abc.c
View file @
5ca4f3cf
...
...
@@ -27820,12 +27820,13 @@ usage:
***********************************************************************/
int
Abc_CommandAbc9GlaRefine
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
extern
int
Gia_ManNewRefine
(
Gia_Man_t
*
p
,
Abc_Cex_t
*
pCex
,
int
iFrameStart
,
int
fVerbose
);
extern
int
Gia_ManNewRefine
(
Gia_Man_t
*
p
,
Abc_Cex_t
*
pCex
,
int
iFrameStart
,
int
iFrameExtra
,
int
fVerbose
);
int
iFrameStart
=
0
;
int
iFrameExtra
=
0
;
int
fMinCut
=
1
;
int
c
,
fVerbose
=
0
;
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"Fmvh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"F
G
mvh"
)
)
!=
EOF
)
{
switch
(
c
)
{
...
...
@@ -27840,6 +27841,17 @@ int Abc_CommandAbc9GlaRefine( Abc_Frame_t * pAbc, int argc, char ** argv )
if
(
iFrameStart
<
0
)
goto
usage
;
break
;
case
'G'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-G
\"
should be followed by an integer.
\n
"
);
goto
usage
;
}
iFrameExtra
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
iFrameExtra
<
0
)
goto
usage
;
break
;
case
'm'
:
fMinCut
^=
1
;
break
;
...
...
@@ -27867,14 +27879,15 @@ int Abc_CommandAbc9GlaRefine( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print
(
-
1
,
"Abc_CommandAbc9GlaRefine(): There is no counter-example.
\n
"
);
return
1
;
}
pAbc
->
Status
=
Gia_ManNewRefine
(
pAbc
->
pGia
,
pAbc
->
pCex
,
iFrameStart
,
fVerbose
);
pAbc
->
Status
=
Gia_ManNewRefine
(
pAbc
->
pGia
,
pAbc
->
pCex
,
iFrameStart
,
iFrameExtra
,
fVerbose
);
Abc_FrameReplaceCex
(
pAbc
,
&
pAbc
->
pGia
->
pCexSeq
);
return
0
;
usage:
Abc_Print
(
-
2
,
"usage: &gla_refine [-F num] [-vh]
\n
"
);
Abc_Print
(
-
2
,
"usage: &gla_refine [-F
G
num] [-vh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
refines the pre-computed gate map using the counter-example
\n
"
);
Abc_Print
(
-
2
,
"
\t
-F num : starting timeframe for suffix refinement [default = %d]
\n
"
,
iFrameStart
);
Abc_Print
(
-
2
,
"
\t
-G num : the number of additional timeframes to try [default = %d]
\n
"
,
iFrameExtra
);
// Abc_Print( -2, "\t-m : toggle using min-cut to derive the refinements [default = %s]\n", fMinCut? "yes": "no" );
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
...
...
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