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
c7bb89d1
Commit
c7bb89d1
authored
Nov 29, 2010
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
An option to output verbose stats about timeframe sizes during unrolling
parent
5a192f02
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
src/base/abci/abcMiter.c
+7
-0
No files found.
src/base/abci/abcMiter.c
View file @
c7bb89d1
...
...
@@ -858,6 +858,8 @@ Abc_Ntk_t * Abc_NtkFrames( Abc_Ntk_t * pNtk, int nFrames, int fInitial, int fVer
***********************************************************************/
void
Abc_NtkAddFrame
(
Abc_Ntk_t
*
pNtkFrames
,
Abc_Ntk_t
*
pNtk
,
int
iFrame
)
{
int
fVerbose
=
0
;
int
NodeBef
=
Abc_NtkNodeNum
(
pNtkFrames
);
char
Buffer
[
10
];
Abc_Obj_t
*
pNode
,
*
pLatch
;
int
i
;
...
...
@@ -880,6 +882,11 @@ void Abc_NtkAddFrame( Abc_Ntk_t * pNtkFrames, Abc_Ntk_t * pNtk, int iFrame )
pLatch
->
pCopy
=
Abc_ObjChild0Copy
(
Abc_ObjFanin0
(
pLatch
));
Abc_NtkForEachLatch
(
pNtk
,
pLatch
,
i
)
Abc_ObjFanout0
(
pLatch
)
->
pCopy
=
pLatch
->
pCopy
;
// nodes after
if
(
fVerbose
)
printf
(
"F = %4d : Total = %6d. Nodes = %6d. Prop = %s.
\n
"
,
iFrame
,
Abc_NtkNodeNum
(
pNtk
),
Abc_NtkNodeNum
(
pNtkFrames
)
-
NodeBef
,
Abc_AigNodeIsConst
(
Abc_ObjFanin0
(
Abc_NtkPo
(
pNtk
,
0
))
->
pCopy
)
?
"proof"
:
"unknown"
);
}
...
...
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