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
b8088b90
Commit
b8088b90
authored
Apr 22, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Misc changes.
parent
74d0ffee
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
.hgignore
+1
-0
abclib.dsp
+4
-0
src/map/if/ifMan.c
+2
-2
No files found.
.hgignore
View file @
b8088b90
...
...
@@ -19,6 +19,7 @@ src/aig/ssm/
src/aig/ddb/
src/base/abc2/
src/base/abc2d/
*~
*.orig
...
...
abclib.dsp
View file @
b8088b90
...
...
@@ -698,6 +698,10 @@ SOURCE=.\src\base\test\test.c
# PROP Default_Filter ""
# End Group
# Begin Group "abc2d"
# PROP Default_Filter ""
# End Group
# End Group
# Begin Group "bdd"
...
...
src/map/if/ifMan.c
View file @
b8088b90
...
...
@@ -71,8 +71,8 @@ If_Man_t * If_ManStart( If_Par_t * pPars )
// p->pMemSet = Mem_FixedStart( p->nSetBytes );
// report expected memory usage
if
(
p
->
pPars
->
fVerbose
)
Abc_Print
(
1
,
"K = %d. Memory (bytes): Truth = %4d. Cut = %4d. Obj = %4d. Set = %4d.
\n
"
,
p
->
pPars
->
nLutSize
,
4
*
p
->
nTruthWords
,
p
->
nCutBytes
,
p
->
nObjBytes
,
p
->
nSetBytes
);
Abc_Print
(
1
,
"K = %d. Memory (bytes): Truth = %4d. Cut = %4d. Obj = %4d. Set = %4d.
CutMin = %s
\n
"
,
p
->
pPars
->
nLutSize
,
4
*
p
->
nTruthWords
,
p
->
nCutBytes
,
p
->
nObjBytes
,
p
->
nSetBytes
,
p
->
pPars
->
fCutMin
?
"yes"
:
"no"
);
// room for temporary truth tables
p
->
puTemp
[
0
]
=
p
->
pPars
->
fTruth
?
ABC_ALLOC
(
unsigned
,
4
*
p
->
nTruthWords
)
:
NULL
;
p
->
puTemp
[
1
]
=
p
->
puTemp
[
0
]
+
p
->
nTruthWords
;
...
...
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