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
95d2ab9c
Commit
95d2ab9c
authored
Aug 08, 2016
by
Mathias Soeken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improvements in exact synthesis.
parent
5b9e520c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
src/base/abci/abc.c
+9
-5
src/base/abci/abcExact.c
+0
-0
No files found.
src/base/abci/abc.c
View file @
95d2ab9c
...
@@ -7417,13 +7417,13 @@ usage:
...
@@ -7417,13 +7417,13 @@ usage:
int
Abc_CommandBmsStart
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
int
Abc_CommandBmsStart
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
{
extern
int
Abc_ExactIsRunning
();
extern
int
Abc_ExactIsRunning
();
extern
void
Abc_ExactStart
(
int
nBTLimit
,
int
fMakeAIG
,
int
fVerbose
,
const
char
*
pFilename
);
extern
void
Abc_ExactStart
(
int
nBTLimit
,
int
fMakeAIG
,
int
fVerbose
,
int
fVeryVerbose
,
const
char
*
pFilename
);
int
c
,
fMakeAIG
=
0
,
fVerbose
=
0
,
nBTLimit
=
100
00
;
int
c
,
fMakeAIG
=
0
,
fVerbose
=
0
,
fVeryVerbose
=
0
,
nBTLimit
=
1
00
;
char
*
pFilename
=
NULL
;
char
*
pFilename
=
NULL
;
Extra_UtilGetoptReset
();
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"Cavh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"Cav
w
h"
)
)
!=
EOF
)
{
{
switch
(
c
)
switch
(
c
)
{
{
...
@@ -7442,6 +7442,9 @@ int Abc_CommandBmsStart( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -7442,6 +7442,9 @@ int Abc_CommandBmsStart( Abc_Frame_t * pAbc, int argc, char ** argv )
case
'v'
:
case
'v'
:
fVerbose
^=
1
;
fVerbose
^=
1
;
break
;
break
;
case
'w'
:
fVeryVerbose
^=
1
;
break
;
case
'h'
:
case
'h'
:
goto
usage
;
goto
usage
;
default:
default:
...
@@ -7460,16 +7463,17 @@ int Abc_CommandBmsStart( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -7460,16 +7463,17 @@ int Abc_CommandBmsStart( Abc_Frame_t * pAbc, int argc, char ** argv )
return
1
;
return
1
;
}
}
Abc_ExactStart
(
nBTLimit
,
fMakeAIG
,
fVerbose
,
pFilename
);
Abc_ExactStart
(
nBTLimit
,
fMakeAIG
,
fVerbose
,
fVeryVerbose
,
pFilename
);
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage: bms_start [-C <num>] [-avh] [<file>]
\n
"
);
Abc_Print
(
-
2
,
"usage: bms_start [-C <num>] [-av
w
h] [<file>]
\n
"
);
Abc_Print
(
-
2
,
"
\t
starts BMS manager for recording optimum networks
\n
"
);
Abc_Print
(
-
2
,
"
\t
starts BMS manager for recording optimum networks
\n
"
);
Abc_Print
(
-
2
,
"
\t
if <file> is specified, store entries are read from that file
\n
"
);
Abc_Print
(
-
2
,
"
\t
if <file> is specified, store entries are read from that file
\n
"
);
Abc_Print
(
-
2
,
"
\t
-C <num> : the limit on the number of conflicts [default = %d]
\n
"
,
nBTLimit
);
Abc_Print
(
-
2
,
"
\t
-C <num> : the limit on the number of conflicts [default = %d]
\n
"
,
nBTLimit
);
Abc_Print
(
-
2
,
"
\t
-a : toggle create AIG [default = %s]
\n
"
,
fMakeAIG
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-a : toggle create AIG [default = %s]
\n
"
,
fMakeAIG
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle verbose printout [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle verbose printout [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-w : toggle very verbose printout [default = %s]
\n
"
,
fVeryVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
Abc_Print
(
-
2
,
"
\t\n
"
);
Abc_Print
(
-
2
,
"
\t\n
"
);
Abc_Print
(
-
2
,
"
\t
This command was contributed by Mathias Soeken from EPFL in July 2016.
\n
"
);
Abc_Print
(
-
2
,
"
\t
This command was contributed by Mathias Soeken from EPFL in July 2016.
\n
"
);
src/base/abci/abcExact.c
View file @
95d2ab9c
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