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
ac59789e
Commit
ac59789e
authored
Mar 31, 2017
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Experiments with don't-cares.
parent
ecbb5c4d
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
src/base/abci/abc.c
+1
-0
src/base/acb/acbAbc.c
+4
-4
src/base/acb/acbMfs.c
+0
-0
No files found.
src/base/abci/abc.c
View file @
ac59789e
...
...
@@ -5777,6 +5777,7 @@ int Abc_CommandMfse( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print
(
-
1
,
"Command is only applicable to LUT size no more than 6.
\n
"
);
return
1
;
}
Abc_NtkToSop
(
pNtk
,
-
1
,
ABC_INFINITY
);
pNtkNew
=
Abc_NtkOptMfse
(
pNtk
,
pPars
);
if
(
pNtkNew
==
NULL
)
{
src/base/acb/acbAbc.c
View file @
ac59789e
...
...
@@ -209,11 +209,11 @@ void Acb_ParSetDefault( Acb_Par_t * pPars )
{
memset
(
pPars
,
0
,
sizeof
(
Acb_Par_t
)
);
pPars
->
nLutSize
=
4
;
// LUT size
pPars
->
nTfoLevMax
=
1
;
// the maximum fanout levels
pPars
->
nTfoLevMax
=
2
;
// the maximum fanout levels
pPars
->
nTfiLevMax
=
2
;
// the maximum fanin levels
pPars
->
nFanoutMax
=
1
0
;
// the maximum number of fanouts
pPars
->
nDivMax
=
16
;
// the maximum divisor count
pPars
->
nTabooMax
=
4
;
// the minimum MFFC size
pPars
->
nFanoutMax
=
2
0
;
// the maximum number of fanouts
pPars
->
nDivMax
=
24
;
// the maximum divisor count
pPars
->
nTabooMax
=
1
;
// the minimum MFFC size
pPars
->
nGrowthLevel
=
0
;
// the maximum allowed growth in level
pPars
->
nBTLimit
=
0
;
// the maximum number of conflicts in one SAT run
pPars
->
nNodesMax
=
0
;
// the maximum number of nodes to try
...
...
src/base/acb/acbMfs.c
View file @
ac59789e
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