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
6d088bc4
Commit
6d088bc4
authored
Feb 03, 2017
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enabling new X-valued simulation in 'pdr'.
parent
e91abd63
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
35 additions
and
5 deletions
+35
-5
abclib.dsp
+4
-0
src/base/abci/abc.c
+6
-2
src/proof/pdr/module.make
+1
-0
src/proof/pdr/pdr.h
+1
-0
src/proof/pdr/pdrCore.c
+1
-0
src/proof/pdr/pdrInt.h
+8
-0
src/proof/pdr/pdrMan.c
+4
-0
src/proof/pdr/pdrSat.c
+8
-1
src/proof/pdr/pdrTsim.c
+2
-2
src/proof/pdr/pdrTsim2.c
+0
-0
No files found.
abclib.dsp
View file @
6d088bc4
...
...
@@ -5263,6 +5263,10 @@ SOURCE=.\src\proof\pdr\pdrTsim.c
# End Source File
# Begin Source File
SOURCE=.\src\proof\pdr\pdrTsim2.c
# End Source File
# Begin Source File
SOURCE=.\src\proof\pdr\pdrUtil.c
# End Source File
# End Group
...
...
src/base/abci/abc.c
View file @
6d088bc4
...
...
@@ -26008,7 +26008,7 @@ int Abc_CommandPdr( Abc_Frame_t * pAbc, int argc, char ** argv )
int
c
;
Pdr_ManSetDefaultParams
(
pPars
);
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"MFCDRTHGSaxrmsipdegoncvwzh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"MFCDRTHGSaxrm
u
sipdegoncvwzh"
)
)
!=
EOF
)
{
switch
(
c
)
{
...
...
@@ -26123,6 +26123,9 @@ int Abc_CommandPdr( Abc_Frame_t * pAbc, int argc, char ** argv )
case
'm'
:
pPars
->
fMonoCnf
^=
1
;
break
;
case
'u'
:
pPars
->
fNewXSim
^=
1
;
break
;
case
's'
:
pPars
->
fShortest
^=
1
;
break
;
...
...
@@ -26191,7 +26194,7 @@ int Abc_CommandPdr( Abc_Frame_t * pAbc, int argc, char ** argv )
return
0
;
usage:
Abc_Print
(
-
2
,
"usage: pdr [-MFCDRTHGS <num>] [-axrmsipdegoncvwzh]
\n
"
);
Abc_Print
(
-
2
,
"usage: pdr [-MFCDRTHGS <num>] [-axrm
u
sipdegoncvwzh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
model checking using property directed reachability (aka IC3)
\n
"
);
Abc_Print
(
-
2
,
"
\t
pioneered by Aaron R. Bradley (http://theory.stanford.edu/~arbrad/)
\n
"
);
Abc_Print
(
-
2
,
"
\t
with improvements by Niklas Een (http://een.se/niklas/)
\n
"
);
...
...
@@ -26208,6 +26211,7 @@ usage:
Abc_Print
(
-
2
,
"
\t
-x : toggle storing CEXes when solving all outputs [default = %s]
\n
"
,
pPars
->
fStoreCex
?
"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
-u : toggle updated X-valued simulation [default = %s]
\n
"
,
pPars
->
fNewXSim
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-s : toggle creating only shortest counter-examples [default = %s]
\n
"
,
pPars
->
fShortest
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-i : toggle clause pushing from an intermediate timeframe [default = %s]
\n
"
,
pPars
->
fShiftStart
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-p : toggle reusing proof-obligations in the last timeframe [default = %s]
\n
"
,
pPars
->
fReuseProofOblig
?
"yes"
:
"no"
);
src/proof/pdr/module.make
View file @
6d088bc4
...
...
@@ -4,4 +4,5 @@ SRC += src/proof/pdr/pdrCnf.c \
src/proof/pdr/pdrMan.c
\
src/proof/pdr/pdrSat.c
\
src/proof/pdr/pdrTsim.c
\
src/proof/pdr/pdrTsim2.c
\
src/proof/pdr/pdrUtil.c
src/proof/pdr/pdr.h
View file @
6d088bc4
...
...
@@ -52,6 +52,7 @@ struct Pdr_Par_t_
int
nRandomSeed
;
// value to seed the SAT solver with
int
fTwoRounds
;
// use two rounds for generalization
int
fMonoCnf
;
// monolythic CNF
int
fNewXSim
;
// updated X-valued simulation
int
fDumpInv
;
// dump inductive invariant
int
fUseSupp
;
// use support in the invariant
int
fShortest
;
// forces bug traces to be shortest
...
...
src/proof/pdr/pdrCore.c
View file @
6d088bc4
...
...
@@ -63,6 +63,7 @@ void Pdr_ManSetDefaultParams( Pdr_Par_t * pPars )
pPars
->
fSkipDown
=
1
;
// apply down in generalization
pPars
->
fCtgs
=
0
;
// handle CTGs in down
pPars
->
fMonoCnf
=
0
;
// monolythic CNF
pPars
->
fNewXSim
=
0
;
// updated X-valued simulation
pPars
->
fDumpInv
=
0
;
// dump inductive invariant
pPars
->
fUseSupp
=
1
;
// using support variables in the invariant
pPars
->
fShortest
=
0
;
// forces bug traces to be shortest
...
...
src/proof/pdr/pdrInt.h
View file @
6d088bc4
...
...
@@ -42,6 +42,8 @@ ABC_NAMESPACE_HEADER_START
/// BASIC TYPES ///
////////////////////////////////////////////////////////////////////////
typedef
struct
Txs_Man_t_
Txs_Man_t
;
typedef
struct
Pdr_Set_t_
Pdr_Set_t
;
struct
Pdr_Set_t_
{
...
...
@@ -87,6 +89,8 @@ struct Pdr_Man_t_
int
*
pOrder
;
// ordering of the lits
Vec_Int_t
*
vActVars
;
// the counter of activation variables
int
iUseFrame
;
// the first used frame
// terminary simulation
Txs_Man_t
*
pTxs
;
// internal use
Vec_Int_t
*
vPrio
;
// priority flops
Vec_Int_t
*
vLits
;
// array of literals
...
...
@@ -189,6 +193,10 @@ extern int Pdr_ManCheckCubeCs( Pdr_Man_t * p, int k, Pdr_Set_t * pCu
extern
int
Pdr_ManCheckCube
(
Pdr_Man_t
*
p
,
int
k
,
Pdr_Set_t
*
pCube
,
Pdr_Set_t
**
ppPred
,
int
nConfLimit
,
int
fTryConf
);
/*=== pdrTsim.c ==========================================================*/
extern
Pdr_Set_t
*
Pdr_ManTernarySim
(
Pdr_Man_t
*
p
,
int
k
,
Pdr_Set_t
*
pCube
);
/*=== pdrTsim2.c ==========================================================*/
extern
Txs_Man_t
*
Txs_ManStart
(
Pdr_Man_t
*
pMan
,
Aig_Man_t
*
pAig
,
Vec_Int_t
*
vPrio
);
extern
void
Txs_ManStop
(
Txs_Man_t
*
);
extern
Pdr_Set_t
*
Txs_ManTernarySim
(
Txs_Man_t
*
p
,
int
k
,
Pdr_Set_t
*
pCube
);
/*=== pdrUtil.c ==========================================================*/
extern
Pdr_Set_t
*
Pdr_SetAlloc
(
int
nSize
);
extern
Pdr_Set_t
*
Pdr_SetCreate
(
Vec_Int_t
*
vLits
,
Vec_Int_t
*
vPiLits
);
...
...
src/proof/pdr/pdrMan.c
View file @
6d088bc4
...
...
@@ -70,6 +70,8 @@ Pdr_Man_t * Pdr_ManStart( Aig_Man_t * pAig, Pdr_Par_t * pPars, Vec_Int_t * vPrio
p
->
vSuppLits
=
Vec_IntAlloc
(
100
);
// support literals
p
->
pCubeJust
=
Pdr_SetAlloc
(
Saig_ManRegNum
(
pAig
)
);
p
->
pCnfMan
=
Cnf_ManStart
();
// ternary simulation
p
->
pTxs
=
Txs_ManStart
(
p
,
pAig
,
p
->
vPrio
);
// additional AIG data-members
if
(
pAig
->
pFanData
==
NULL
)
Aig_ManFanoutStart
(
pAig
);
...
...
@@ -150,6 +152,8 @@ void Pdr_ManStop( Pdr_Man_t * p )
Vec_WecFreeP
(
&
p
->
vVLits
);
// CNF manager
Cnf_ManStop
(
p
->
pCnfMan
);
// terminary simulation
Txs_ManStop
(
p
->
pTxs
);
// internal use
Vec_IntFreeP
(
&
p
->
vPrio
);
// priority flops
Vec_IntFree
(
p
->
vLits
);
// array of literals
...
...
src/proof/pdr/pdrSat.c
View file @
6d088bc4
...
...
@@ -377,7 +377,14 @@ int Pdr_ManCheckCube( Pdr_Man_t * p, int k, Pdr_Set_t * pCube, Pdr_Set_t ** ppPr
p
->
tSatSat
+=
clk
;
p
->
nCallsS
++
;
if
(
ppPred
)
*
ppPred
=
Pdr_ManTernarySim
(
p
,
k
,
pCube
);
{
abctime
clk
=
Abc_Clock
();
if
(
p
->
pPars
->
fNewXSim
)
*
ppPred
=
Txs_ManTernarySim
(
p
->
pTxs
,
k
,
pCube
);
else
*
ppPred
=
Pdr_ManTernarySim
(
p
,
k
,
pCube
);
p
->
tTsim
+=
Abc_Clock
()
-
clk
;
}
RetValue
=
0
;
}
...
...
src/proof/pdr/pdrTsim.c
View file @
6d088bc4
...
...
@@ -364,7 +364,7 @@ Pdr_Set_t * Pdr_ManTernarySim( Pdr_Man_t * p, int k, Pdr_Set_t * pCube )
Vec_Int_t
*
vRes
=
p
->
vRes
;
// final result (flop literals)
Aig_Obj_t
*
pObj
;
int
i
,
Entry
,
RetValue
;
abctime
clk
=
Abc_Clock
();
//
abctime clk = Abc_Clock();
// collect CO objects
Vec_IntClear
(
vCoObjs
);
...
...
@@ -474,7 +474,7 @@ Pdr_ManPrintCex( p->pAig, vCiObjs, vCiVals, vCi2Rem );
// derive the set of resulting registers
Pdr_ManDeriveResult
(
p
->
pAig
,
vCiObjs
,
vCiVals
,
vCi2Rem
,
vRes
,
vPiLits
);
assert
(
Vec_IntSize
(
vRes
)
>
0
);
p
->
tTsim
+=
Abc_Clock
()
-
clk
;
//
p->tTsim += Abc_Clock() - clk;
pRes
=
Pdr_SetCreate
(
vRes
,
vPiLits
);
//ZH: Disabled assertion because this invariant doesn't hold with down
//because of the join operation which can bring in initial states
...
...
src/proof/pdr/pdrTsim2.c
0 → 100644
View file @
6d088bc4
This diff is collapsed.
Click to expand it.
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