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
40d90ae6
Commit
40d90ae6
authored
May 04, 2016
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small changes.
parent
21896ba6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
readme.md
+1
-3
src/base/abci/abc.c
+2
-2
No files found.
readme.md
View file @
40d90ae6
...
...
@@ -5,9 +5,7 @@ ABC is always changing but the current snapshot is believed to be stable.
## Compiling:
To compile ABC as a binary, download and unzip the code, then type
`make`
.
To compile ABC as a static library, comment out
`#define ABC_LIB`
in file
"src/base/main/main.c", then type
`make libabc.a`
.
To compile ABC as a static library, type
`make libabc.a`
.
When ABC is used as a static library, two additional procedures,
`Abc_Start()`
and
`Abc_Stop()`
, are provided for starting and quitting the ABC framework in
...
...
src/base/abci/abc.c
View file @
40d90ae6
...
...
@@ -39355,9 +39355,9 @@ int Abc_CommandAbc9Exorcism( Abc_Frame_t * pAbc, int argc, char ** argv )
usage:
Abc_Print
(
-
2
,
"usage: &exorcism [-Q N] [-V N] <file>
\n
"
);
Abc_Print
(
-
2
,
" performs heuristic exclusive sum-of-project minimization
\n
"
);
Abc_Print
(
-
2
,
" -Q N : minimization quality [default =
0]
\n
"
);
Abc_Print
(
-
2
,
" -Q N : minimization quality [default =
%d]
\n
"
,
Quality
);
Abc_Print
(
-
2
,
" increasing this number improves quality and adds to runtime
\n
"
);
Abc_Print
(
-
2
,
" -V N : verbosity level [default =
0]
\n
"
);
Abc_Print
(
-
2
,
" -V N : verbosity level [default =
%d]
\n
"
,
Verbosity
);
Abc_Print
(
-
2
,
" 0 = no output; 1 = outline; 2 = verbose
\n
"
);
Abc_Print
(
-
2
,
" <file>: the output file name in ESOP-PLA format
\n
"
);
Abc_Print
(
-
2
,
"
\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