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
57daeee9
Commit
57daeee9
authored
May 08, 2011
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated technology mapping.
parent
27bb2a68
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
.hgignore
+0
-2
src/base/abci/abc.c
+2
-3
src/map/if/if.h
+2
-0
src/map/if/module.make
+1
-0
No files found.
.hgignore
View file @
57daeee9
...
...
@@ -18,8 +18,6 @@ src/aig/au/
src/aig/ssm/
src/aig/ddb/
src/map/if/ifDec.c
*~
*.orig
...
...
src/base/abci/abc.c
View file @
57daeee9
...
...
@@ -12884,10 +12884,9 @@ int Abc_CommandIf( Abc_Frame_t * pAbc, int argc, char ** argv )
}
pPars
->
fCutMin
=
1
;
}
/*
if
(
pPars
->
fEnableCheck
)
{
extern int If_CutPerformCheck( unsigned * pTruth, int nVars, int nLeaves );
if
(
pPars
->
nLutSize
<
6
||
pPars
->
nLutSize
>
7
)
{
Abc_Print
(
-
1
,
"This feature only works for {6,7}-LUTs.
\n
"
);
...
...
@@ -12896,7 +12895,7 @@ int Abc_CommandIf( Abc_Frame_t * pAbc, int argc, char ** argv )
pPars
->
pFuncCell
=
If_CutPerformCheck
;
pPars
->
fCutMin
=
1
;
}
*/
// enable truth table computation if cut minimization is selected
if
(
pPars
->
fCutMin
)
{
...
...
src/map/if/if.h
View file @
57daeee9
...
...
@@ -404,6 +404,8 @@ extern float If_CutPowerDeref( If_Man_t * p, If_Cut_t * pCut, If_Obj_t
extern
float
If_CutPowerRef
(
If_Man_t
*
p
,
If_Cut_t
*
pCut
,
If_Obj_t
*
pRoot
);
extern
float
If_CutPowerDerefed
(
If_Man_t
*
p
,
If_Cut_t
*
pCut
,
If_Obj_t
*
pRoot
);
extern
float
If_CutPowerRefed
(
If_Man_t
*
p
,
If_Cut_t
*
pCut
,
If_Obj_t
*
pRoot
);
/*=== ifDec.c =============================================================*/
extern
int
If_CutPerformCheck
(
unsigned
*
pTruth
,
int
nVars
,
int
nLeaves
);
/*=== ifLib.c =============================================================*/
extern
If_Lib_t
*
If_LutLibRead
(
char
*
FileName
);
extern
If_Lib_t
*
If_LutLibDup
(
If_Lib_t
*
p
);
...
...
src/map/if/module.make
View file @
57daeee9
SRC
+=
src/map/if/ifCore.c
\
src/map/if/ifCut.c
\
src/map/if/ifDec.c
\
src/map/if/ifLib.c
\
src/map/if/ifMan.c
\
src/map/if/ifMap.c
\
...
...
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