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
b65ae734
Commit
b65ae734
authored
Dec 09, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enabling multi-output solving in 'pdr'.
parent
79aa1f00
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
45 additions
and
13 deletions
+45
-13
src/base/abci/abc.c
+13
-3
src/base/abci/abcDar.c
+5
-1
src/proof/pdr/pdr.h
+3
-1
src/proof/pdr/pdrCore.c
+0
-0
src/proof/pdr/pdrInt.h
+2
-0
src/proof/pdr/pdrMan.c
+4
-1
src/proof/pdr/pdrSat.c
+14
-6
src/proof/pdr/pdrTsim.c
+4
-1
No files found.
src/base/abci/abc.c
View file @
b65ae734
...
...
@@ -22321,10 +22321,11 @@ int Abc_CommandPdr( Abc_Frame_t * pAbc, int argc, char ** argv )
int
c
;
Pdr_ManSetDefaultParams
(
pPars
);
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"
OMFCRT
rmsdgvwh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"
MFCRTa
rmsdgvwh"
)
)
!=
EOF
)
{
switch
(
c
)
{
/*
case 'O':
if ( globalUtilOptind >= argc )
{
...
...
@@ -22336,6 +22337,7 @@ int Abc_CommandPdr( Abc_Frame_t * pAbc, int argc, char ** argv )
if ( pPars->iOutput < 0 )
goto usage;
break;
*/
case
'M'
:
if
(
globalUtilOptind
>=
argc
)
{
...
...
@@ -22391,6 +22393,9 @@ int Abc_CommandPdr( Abc_Frame_t * pAbc, int argc, char ** argv )
if
(
pPars
->
nTimeOut
<
0
)
goto
usage
;
break
;
case
'a'
:
pPars
->
fSolveAll
^=
1
;
break
;
case
'r'
:
pPars
->
fTwoRounds
^=
1
;
break
;
...
...
@@ -22432,12 +22437,15 @@ int Abc_CommandPdr( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print
(
-
2
,
"The current network is not an AIG (run
\"
strash
\"
).
\n
"
);
return
0
;
}
/*
if ( pPars->iOutput != -1 && (pPars->iOutput < 0 || pPars->iOutput >= Abc_NtkPoNum(pNtk)) )
{
Abc_Print( -2, "Output index (%d) is incorrect (can be 0 through %d).\n",
pPars->iOutput, Abc_NtkPoNum(pNtk)-1 );
return 0;
}
*/
/*
if ( Abc_NtkPoNum(pNtk) != 1 && pPars->fVerbose )
{
if ( pPars->iOutput == -1 )
...
...
@@ -22446,6 +22454,7 @@ int Abc_CommandPdr( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print( -2, "Working on the primary output with zero-based number %d (out of %d).\n",
pPars->iOutput, Abc_NtkPoNum(pNtk) );
}
*/
// run the procedure
pAbc
->
Status
=
Abc_NtkDarPdr
(
pNtk
,
pPars
,
&
pCex
);
pAbc
->
nFrames
=
pPars
->
iFrame
;
...
...
@@ -22453,16 +22462,17 @@ int Abc_CommandPdr( Abc_Frame_t * pAbc, int argc, char ** argv )
return
0
;
usage:
Abc_Print
(
-
2
,
"usage: pdr [-
OMFCRT<num] [-
rmsdgvwh]
\n
"
);
Abc_Print
(
-
2
,
"usage: pdr [-
MFCRT<num] [-a
rmsdgvwh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
model checking using property directed reachability (aka IC3)
\n
"
);
Abc_Print
(
-
2
,
"
\t
pioneered by Aaron Bradley (http://ecee.colorado.edu/~bradleya/ic3/)
\n
"
);
Abc_Print
(
-
2
,
"
\t
with improvements by Niklas Een (http://een.se/niklas/)
\n
"
);
Abc_Print
(
-
2
,
"
\t
-O num : the zero-based number of the primary output to solve [default = all]
\n
"
);
//
Abc_Print( -2, "\t-O num : the zero-based number of the primary output to solve [default = all]\n" );
Abc_Print
(
-
2
,
"
\t
-M num : limit on unused vars to trigger SAT solver recycling [default = %d]
\n
"
,
pPars
->
nRecycle
);
Abc_Print
(
-
2
,
"
\t
-F num : limit on timeframes explored to stop computation [default = %d]
\n
"
,
pPars
->
nFrameMax
);
Abc_Print
(
-
2
,
"
\t
-C num : limit on conflicts in one SAT call (0 = no limit) [default = %d]
\n
"
,
pPars
->
nConfLimit
);
Abc_Print
(
-
2
,
"
\t
-R num : limit on proof obligations before a restart (0 = no limit) [default = %d]
\n
"
,
pPars
->
nRestLimit
);
Abc_Print
(
-
2
,
"
\t
-T num : approximate timeout in seconds (0 = no limit) [default = %d]
\n
"
,
pPars
->
nTimeOut
);
Abc_Print
(
-
2
,
"
\t
-a : toggle solving all outputs even if one of them is SAT [default = %s]
\n
"
,
pPars
->
fSolveAll
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-r : toggle using more effort in generalization [default = %s]
\n
"
,
pPars
->
fTwoRounds
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-m : toggle using monolythic CNF computation [default = %s]
\n
"
,
pPars
->
fMonoCnf
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-s : toggle creating only shortest counter-examples [default = %s]
\n
"
,
pPars
->
fShortest
?
"yes"
:
"no"
);
...
...
src/base/abci/abcDar.c
View file @
b65ae734
...
...
@@ -2717,6 +2717,7 @@ int Abc_NtkDarPdr( Abc_Ntk_t * pNtk, Pdr_Par_t * pPars, Abc_Cex_t ** ppCex )
Abc_Print
(
1
,
"Converting network into AIG has failed.
\n
"
);
return
-
1
;
}
/*
// perform ORing the primary outputs
if ( pPars->iOutput == -1 )
{
...
...
@@ -2728,6 +2729,9 @@ int Abc_NtkDarPdr( Abc_Ntk_t * pNtk, Pdr_Par_t * pPars, Abc_Cex_t ** ppCex )
}
else
RetValue = Pdr_ManSolve( pMan, pPars, ppCex );
*/
RetValue
=
Pdr_ManSolve
(
pMan
,
pPars
,
ppCex
);
// output the result
if
(
!
pPars
->
fSilent
)
{
...
...
@@ -2739,7 +2743,7 @@ int Abc_NtkDarPdr( Abc_Ntk_t * pNtk, Pdr_Par_t * pPars, Abc_Cex_t ** ppCex )
Abc_Print
(
1
,
"Property UNDECIDED. "
);
else
assert
(
0
);
ABC_PRT
(
"Time"
,
clock
()
-
clk
);
ABC_PRT
(
"Time"
,
clock
()
-
clk
);
}
if
(
*
ppCex
&&
!
Saig_ManVerifyCex
(
pMan
,
*
ppCex
)
)
...
...
src/proof/pdr/pdr.h
View file @
b65ae734
...
...
@@ -40,7 +40,7 @@ ABC_NAMESPACE_HEADER_START
typedef
struct
Pdr_Par_t_
Pdr_Par_t
;
struct
Pdr_Par_t_
{
int
iOutput
;
// zero-based number of primary output to solve
//
int iOutput; // zero-based number of primary output to solve
int
nRecycle
;
// limit on vars for recycling
int
nFrameMax
;
// limit on frame count
int
nConfLimit
;
// limit on SAT solver conflicts
...
...
@@ -54,6 +54,8 @@ struct Pdr_Par_t_
int
fVerbose
;
// verbose output`
int
fVeryVerbose
;
// very verbose output
int
fSilent
;
// totally silent execution
int
fSolveAll
;
// do not stop when found a SAT output
int
nFailOuts
;
// the number of failed outputs
int
iFrame
;
// explored up to this frame
int
RunId
;
// PDR id in this run
int
(
*
pFuncStop
)(
int
);
// callback to terminate
...
...
src/proof/pdr/pdrCore.c
View file @
b65ae734
This diff is collapsed.
Click to expand it.
src/proof/pdr/pdrInt.h
View file @
b65ae734
...
...
@@ -76,6 +76,8 @@ struct Pdr_Man_t_
Vec_Int_t
**
pvId2Vars
;
// for each used ObjId, maps frame into SAT var
Vec_Ptr_t
*
vVar2Ids
;
// for each used frame, maps SAT var into ObjId
// data representation
int
iOutCur
;
// current output
Vec_Ptr_t
*
vCexes
;
// counter-examples for each output
Vec_Ptr_t
*
vSolvers
;
// SAT solvers
Vec_Vec_t
*
vClauses
;
// clauses by timeframe
Pdr_Obl_t
*
pQueue
;
// proof obligations
...
...
src/proof/pdr/pdrMan.c
View file @
b65ae734
...
...
@@ -144,6 +144,8 @@ void Pdr_ManStop( Pdr_Man_t * p )
Vec_IntFree
(
p
->
vRes
);
// final result
Vec_IntFree
(
p
->
vSuppLits
);
// support literals
ABC_FREE
(
p
->
pCubeJust
);
if
(
p
->
vCexes
)
Vec_PtrFreeFree
(
p
->
vCexes
);
// additional AIG data-members
if
(
p
->
pAig
->
pFanData
!=
NULL
)
Aig_ManFanoutStop
(
p
->
pAig
);
...
...
@@ -173,7 +175,8 @@ Abc_Cex_t * Pdr_ManDeriveCex( Pdr_Man_t * p )
nFrames
++
;
// create the counter-example
pCex
=
Abc_CexAlloc
(
Aig_ManRegNum
(
p
->
pAig
),
Saig_ManPiNum
(
p
->
pAig
),
nFrames
);
pCex
->
iPo
=
(
p
->
pPars
->
iOutput
==-
1
)
?
0
:
p
->
pPars
->
iOutput
;
// pCex->iPo = (p->pPars->iOutput==-1)? 0 : p->pPars->iOutput;
pCex
->
iPo
=
p
->
iOutCur
;
pCex
->
iFrame
=
nFrames
-
1
;
for
(
pObl
=
p
->
pQueue
,
f
=
0
;
pObl
;
pObl
=
pObl
->
pNext
,
f
++
)
for
(
i
=
pObl
->
pState
->
nLits
;
i
<
pObl
->
pState
->
nTotal
;
i
++
)
...
...
src/proof/pdr/pdrSat.c
View file @
b65ae734
...
...
@@ -45,6 +45,8 @@ ABC_NAMESPACE_IMPL_START
sat_solver
*
Pdr_ManCreateSolver
(
Pdr_Man_t
*
p
,
int
k
)
{
sat_solver
*
pSat
;
Aig_Obj_t
*
pObj
;
int
i
;
assert
(
Vec_PtrSize
(
p
->
vSolvers
)
==
k
);
assert
(
Vec_VecSize
(
p
->
vClauses
)
==
k
);
assert
(
Vec_IntSize
(
p
->
vActVars
)
==
k
);
...
...
@@ -55,7 +57,9 @@ sat_solver * Pdr_ManCreateSolver( Pdr_Man_t * p, int k )
Vec_VecExpand
(
p
->
vClauses
,
k
);
Vec_IntPush
(
p
->
vActVars
,
0
);
// add property cone
Pdr_ObjSatVar
(
p
,
k
,
Aig_ManCo
(
p
->
pAig
,
(
p
->
pPars
->
iOutput
==-
1
)
?
0
:
p
->
pPars
->
iOutput
)
);
// Pdr_ObjSatVar( p, k, Aig_ManCo(p->pAig, (p->pPars->iOutput==-1)?0:p->pPars->iOutput ) );
Saig_ManForEachPo
(
p
->
pAig
,
pObj
,
i
)
Pdr_ObjSatVar
(
p
,
k
,
pObj
);
return
pSat
;
}
...
...
@@ -173,11 +177,15 @@ Vec_Int_t * Pdr_ManCubeToLits( Pdr_Man_t * p, int k, Pdr_Set_t * pCube, int fCom
void
Pdr_ManSetPropertyOutput
(
Pdr_Man_t
*
p
,
int
k
)
{
sat_solver
*
pSat
;
int
Lit
,
RetValue
;
Aig_Obj_t
*
pObj
;
int
Lit
,
RetValue
,
i
;
pSat
=
Pdr_ManSolver
(
p
,
k
);
Lit
=
toLitCond
(
Pdr_ObjSatVar
(
p
,
k
,
Aig_ManCo
(
p
->
pAig
,
(
p
->
pPars
->
iOutput
==-
1
)
?
0
:
p
->
pPars
->
iOutput
)),
1
);
// neg literal
RetValue
=
sat_solver_addclause
(
pSat
,
&
Lit
,
&
Lit
+
1
);
assert
(
RetValue
==
1
);
Saig_ManForEachPo
(
p
->
pAig
,
pObj
,
i
)
{
Lit
=
toLitCond
(
Pdr_ObjSatVar
(
p
,
k
,
pObj
),
1
);
// neg literal
RetValue
=
sat_solver_addclause
(
pSat
,
&
Lit
,
&
Lit
+
1
);
assert
(
RetValue
==
1
);
}
sat_solver_compress
(
pSat
);
}
...
...
@@ -279,7 +287,7 @@ int Pdr_ManCheckCube( Pdr_Man_t * p, int k, Pdr_Set_t * pCube, Pdr_Set_t ** ppPr
if
(
pCube
==
NULL
)
// solve the property
{
clk
=
clock
();
Lit
=
toLit
(
Pdr_ObjSatVar
(
p
,
k
,
Aig_ManCo
(
p
->
pAig
,
(
p
->
pPars
->
iOutput
==-
1
)
?
0
:
p
->
pPars
->
iOutput
))
);
// pos literal (property fails)
Lit
=
toLit
(
Pdr_ObjSatVar
(
p
,
k
,
Aig_ManCo
(
p
->
pAig
,
p
->
iOutCur
))
);
// pos literal (property fails)
RetValue
=
sat_solver_solve
(
pSat
,
&
Lit
,
&
Lit
+
1
,
nConfLimit
,
0
,
0
,
0
);
if
(
RetValue
==
l_Undef
)
return
-
1
;
...
...
src/proof/pdr/pdrTsim.c
View file @
b65ae734
...
...
@@ -368,7 +368,10 @@ Pdr_Set_t * Pdr_ManTernarySim( Pdr_Man_t * p, int k, Pdr_Set_t * pCube )
// collect CO objects
Vec_IntClear
(
vCoObjs
);
if
(
pCube
==
NULL
)
// the target is the property output
Vec_IntPush
(
vCoObjs
,
Aig_ObjId
(
Aig_ManCo
(
p
->
pAig
,
(
p
->
pPars
->
iOutput
==-
1
)
?
0
:
p
->
pPars
->
iOutput
))
);
{
// Vec_IntPush( vCoObjs, Aig_ObjId(Aig_ManCo(p->pAig, (p->pPars->iOutput==-1)?0:p->pPars->iOutput)) );
Vec_IntPush
(
vCoObjs
,
Aig_ObjId
(
Aig_ManCo
(
p
->
pAig
,
p
->
iOutCur
))
);
}
else
// the target is the cube
{
for
(
i
=
0
;
i
<
pCube
->
nLits
;
i
++
)
...
...
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