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
a33821ab
Commit
a33821ab
authored
Apr 28, 2013
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added alias for 'eliminate'.
parent
2044caa9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
abc.rc
+1
-0
src/base/abci/abc.c
+3
-3
No files found.
abc.rc
View file @
a33821ab
...
...
@@ -30,6 +30,7 @@ alias cg clockgate
alias cl cleanup
alias clp collapse
alias cs care_set
alias el eliminate
alias esd ext_seq_dcs
alias f fraig
alias fs fraig_sweep
...
...
src/base/abci/abc.c
View file @
a33821ab
...
...
@@ -3811,7 +3811,7 @@ int Abc_CommandDisjoint( Abc_Frame_t * pAbc, int argc, char ** argv )
if
(
fGlobal
)
{
// Abc_Print(
-1
, "Performing DSD of global functions of the network.\n" );
// Abc_Print(
0
, "Performing DSD of global functions of the network.\n" );
// get the new network
if
(
!
Abc_NtkIsStrash
(
pNtk
)
)
{
...
...
@@ -3838,7 +3838,7 @@ int Abc_CommandDisjoint( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print
(
-
1
,
"This command is only applicable to logic BDD networks.
\n
"
);
return
1
;
}
Abc_Print
(
-
1
,
"Performing recursive DSD and MUX decomposition of local functions.
\n
"
);
Abc_Print
(
1
,
"Performing recursive DSD and MUX decomposition of local functions.
\n
"
);
if
(
!
Abc_NtkDsdLocal
(
pNtk
,
fVerbose
,
fRecursive
)
)
Abc_Print
(
-
1
,
"Recursive DSD has failed.
\n
"
);
}
...
...
@@ -3849,7 +3849,7 @@ int Abc_CommandDisjoint( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print
(
-
1
,
"This command is only applicable to logic BDD networks (run
\"
bdd
\"
).
\n
"
);
return
1
;
}
Abc_Print
(
-
1
,
"Performing simple non-recursive DSD of local functions.
\n
"
);
Abc_Print
(
1
,
"Performing simple non-recursive DSD of local functions.
\n
"
);
if
(
!
Abc_NtkDsdLocal
(
pNtk
,
fVerbose
,
fRecursive
)
)
Abc_Print
(
-
1
,
"Simple DSD of local functions has failed.
\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