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
e354dc40
Commit
e354dc40
authored
5 years ago
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing recent change to 'print_stats'.
parent
7ccb25bf
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
src/aig/gia/giaMan.c
+2
-2
src/base/abci/abc.c
+1
-0
No files found.
src/aig/gia/giaMan.c
View file @
e354dc40
...
...
@@ -450,7 +450,7 @@ void Gia_ManPrintStats( Gia_Man_t * p, Gps_Par_t * pPars )
Gia_ManPrintStatsMiter
(
p
,
0
);
return
;
}
if
(
pPars
->
fNoColor
)
if
(
pPars
&&
pPars
->
fNoColor
)
{
if
(
p
->
pName
)
Abc_Print
(
1
,
"%-8s : "
,
p
->
pName
);
...
...
@@ -476,7 +476,7 @@ void Gia_ManPrintStats( Gia_Man_t * p, Gps_Par_t * pPars )
Abc_Print
(
1
,
" ff =%7d"
,
Gia_ManRegNum
(
p
)
);
if
(
Gia_ManRegBoxNum
(
p
)
)
Abc_Print
(
1
,
" boxff =%d(%d)"
,
Gia_ManRegBoxNum
(
p
),
Gia_ManClockDomainNum
(
p
)
);
if
(
pPars
->
fNoColor
)
if
(
pPars
&&
pPars
->
fNoColor
)
{
Abc_Print
(
1
,
" %s =%8d"
,
p
->
pMuxes
?
"nod"
:
"and"
,
Gia_ManAndNum
(
p
)
);
Abc_Print
(
1
,
" lev =%5d"
,
Gia_ManLevelNum
(
p
)
);
...
...
This diff is collapsed.
Click to expand it.
src/base/abci/abc.c
View file @
e354dc40
...
...
@@ -13446,6 +13446,7 @@ int Abc_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv )
//Dau_NetworkEnumTest();
//Extra_SimulationTest( nDivMax, nNumOnes, fNewOrder );
//Mnist_ExperimentWithScaling( nDecMax );
//Extra_ReadForestTest();
return
0
;
usage:
Abc_Print
(
-
2
,
"usage: test [-CKDNM] [-aovwh] <file_name>
\n
"
);
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