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
196b3591
Commit
196b3591
authored
Feb 18, 2017
by
Yen-Sheng Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
started pdrIncr.c
parent
16fda0bd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
60 additions
and
1 deletions
+60
-1
src/base/abci/abc.c
+2
-0
src/proof/pdr/module.make
+2
-1
src/proof/pdr/pdrIncr.c
+56
-0
No files found.
src/base/abci/abc.c
View file @
196b3591
...
...
@@ -26434,6 +26434,7 @@ usage:
int
Abc_CommandIPdr
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
extern
int
Abc_NtkDarPdr
(
Abc_Ntk_t
*
pNtk
,
Pdr_Par_t
*
pPars
);
extern
int
IPdr_ManSolve
(
Abc_Ntk_t
*
pNtk
,
Pdr_Par_t
*
pPars
);
Pdr_Par_t
Pars
,
*
pPars
=
&
Pars
;
Abc_Ntk_t
*
pNtk
=
Abc_FrameReadNtk
(
pAbc
);
int
c
;
...
...
@@ -26629,6 +26630,7 @@ int Abc_CommandIPdr( Abc_Frame_t * pAbc, int argc, char ** argv )
return
0
;
}
// run the procedure
IPdr_ManSolve
(
pNtk
,
pPars
);
pPars
->
fUseBridge
=
pAbc
->
fBridgeMode
;
pAbc
->
Status
=
Abc_NtkDarPdr
(
pNtk
,
pPars
);
pAbc
->
nFrames
=
pNtk
->
vSeqModelVec
?
-
1
:
pPars
->
iFrame
;
src/proof/pdr/module.make
View file @
196b3591
...
...
@@ -5,4 +5,5 @@ SRC += src/proof/pdr/pdrCnf.c \
src/proof/pdr/pdrSat.c
\
src/proof/pdr/pdrTsim.c
\
src/proof/pdr/pdrTsim2.c
\
src/proof/pdr/pdrUtil.c
src/proof/pdr/pdrUtil.c
\
src/proof/pdr/pdrIncr.c
src/proof/pdr/pdrIncr.c
0 → 100644
View file @
196b3591
/**CFile****************************************************************
FileName [pdrIncr.c]
SystemName [ABC: Logic synthesis and verification system.]
PackageName [Property driven reachability.]
Synopsis [PDR with incremental solving.]
Author [Yen-Sheng Ho, Alan Mishchenko]
Affiliation [UC Berkeley]
Date [Ver. 1.0. Started - Feb. 17, 2017.]
Revision [$Id: pdrIncr.c$]
***********************************************************************/
#include "pdrInt.h"
#include "base/main/main.h"
ABC_NAMESPACE_IMPL_START
////////////////////////////////////////////////////////////////////////
/// DECLARATIONS ///
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
////////////////////////////////////////////////////////////////////////
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
int
IPdr_ManSolve
(
Abc_Ntk_t
*
pNtk
,
Pdr_Par_t
*
pPars
)
{
return
0
;
}
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////
ABC_NAMESPACE_IMPL_END
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