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
13c883e1
Commit
13c883e1
authored
Sep 11, 2018
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding a warning about handling boxes in &mfs.
parent
68524cc1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletions
+11
-1
src/base/abci/abc.c
+11
-1
No files found.
src/base/abci/abc.c
View file @
13c883e1
...
...
@@ -43675,6 +43675,16 @@ int Abc_CommandAbc9Mfs( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print
(
-
1
,
"Abc_CommandAbc9Mfs(): The current AIG has no mapping.
\n
"
);
return
0
;
}
if
(
Gia_ManLutSizeMax
(
pAbc
->
pGia
)
>
6
)
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9Mfs(): The current mapping has nodes with more than 6 inputs. Cannot use
\"
mfs
\"
.
\n
"
);
return
0
;
}
if
(
pAbc
->
pGia
->
pAigExtra
&&
Gia_ManPiNum
(
pAbc
->
pGia
->
pAigExtra
)
>
6
)
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9Mfs(): The current white-boxes have more than 6 inputs. Cannot use
\"
mfs
\"
.
\n
"
);
return
0
;
}
pTemp
=
Gia_ManPerformMfs
(
pAbc
->
pGia
,
pPars
);
Abc_FrameUpdateGia
(
pAbc
,
pTemp
);
return
0
;
...
...
@@ -43692,7 +43702,7 @@ usage:
Abc_Print
(
-
2
,
"
\t
-d : toggle performing redundancy removal [default = %s]
\n
"
,
pPars
->
fRrOnly
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-a : toggle minimizing area or area+edges [default = %s]
\n
"
,
pPars
->
fArea
?
"area"
:
"area+edges"
);
Abc_Print
(
-
2
,
"
\t
-e : toggle high-effort resubstitution [default = %s]
\n
"
,
pPars
->
fMoreEffort
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-b : toggle preserving all whi
l
e boxes [default = %s]
\n
"
,
pPars
->
fAllBoxes
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-b : toggle preserving all whi
t
e boxes [default = %s]
\n
"
,
pPars
->
fAllBoxes
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing optimization summary [default = %s]
\n
"
,
pPars
->
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-w : toggle printing detailed stats for each node [default = %s]
\n
"
,
pPars
->
fVeryVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
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