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
c86a13f0
Commit
c86a13f0
authored
Mar 20, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Experiments with recent ideas.
parent
b581e16f
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
433 additions
and
41 deletions
+433
-41
abclib.dsp
+7
-3
src/aig/gia/giaMan.c
+13
-5
src/base/abci/abc.c
+114
-17
src/sat/bmc/bmcBmci.c
+14
-14
src/sat/bmc/bmcInse.c
+0
-0
src/sat/bmc/bmcMaxi.c
+282
-0
src/sat/bmc/module.make
+3
-2
No files found.
abclib.dsp
View file @
c86a13f0
...
@@ -1419,6 +1419,10 @@ SOURCE=.\src\sat\bmc\bmcBmcAnd.c
...
@@ -1419,6 +1419,10 @@ SOURCE=.\src\sat\bmc\bmcBmcAnd.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
SOURCE=.\src\sat\bmc\bmcBmci.c
# End Source File
# Begin Source File
SOURCE=.\src\sat\bmc\bmcCexCut.c
SOURCE=.\src\sat\bmc\bmcCexCut.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
...
@@ -1447,7 +1451,7 @@ SOURCE=.\src\sat\bmc\bmcICheck.c
...
@@ -1447,7 +1451,7 @@ SOURCE=.\src\sat\bmc\bmcICheck.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
SOURCE=.\src\sat\bmc\bmc
Lilac
.c
SOURCE=.\src\sat\bmc\bmc
Inse
.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
...
@@ -1455,11 +1459,11 @@ SOURCE=.\src\sat\bmc\bmcLoad.c
...
@@ -1455,11 +1459,11 @@ SOURCE=.\src\sat\bmc\bmcLoad.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
SOURCE=.\src\sat\bmc\bmcM
ult
i.c
SOURCE=.\src\sat\bmc\bmcM
ax
i.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
SOURCE=.\src\sat\bmc\bmc
Tulip
.c
SOURCE=.\src\sat\bmc\bmc
Multi
.c
# End Source File
# End Source File
# Begin Source File
# Begin Source File
...
...
src/aig/gia/giaMan.c
View file @
c86a13f0
...
@@ -305,12 +305,16 @@ void Gia_ManPrintTents( Gia_Man_t * p )
...
@@ -305,12 +305,16 @@ void Gia_ManPrintTents( Gia_Man_t * p )
void
Gia_ManPrintInitClasses
(
Vec_Int_t
*
vInits
)
void
Gia_ManPrintInitClasses
(
Vec_Int_t
*
vInits
)
{
{
int
i
,
Value
;
int
i
,
Value
;
int
Counts
[
4
]
=
{
0
};
int
Counts
[
6
]
=
{
0
};
Vec_IntForEachEntry
(
vInits
,
Value
,
i
)
Vec_IntForEachEntry
(
vInits
,
Value
,
i
)
Counts
[
Value
]
++
;
Counts
[
Value
]
++
;
for
(
i
=
0
;
i
<
4
;
i
++
)
for
(
i
=
0
;
i
<
6
;
i
++
)
if
(
Counts
[
i
]
)
printf
(
"%d = %d "
,
i
,
Counts
[
i
]
);
printf
(
"%d = %d "
,
i
,
Counts
[
i
]
);
printf
(
"X = %d
\n
"
,
Counts
[
2
]
+
Counts
[
3
]
);
printf
(
" "
);
printf
(
"B = %d "
,
Counts
[
0
]
+
Counts
[
1
]
);
printf
(
"X = %d "
,
Counts
[
2
]
+
Counts
[
3
]
);
printf
(
"Q = %d
\n
"
,
Counts
[
4
]
+
Counts
[
5
]
);
Vec_IntForEachEntry
(
vInits
,
Value
,
i
)
Vec_IntForEachEntry
(
vInits
,
Value
,
i
)
{
{
Counts
[
Value
]
++
;
Counts
[
Value
]
++
;
...
@@ -319,9 +323,13 @@ void Gia_ManPrintInitClasses( Vec_Int_t * vInits )
...
@@ -319,9 +323,13 @@ void Gia_ManPrintInitClasses( Vec_Int_t * vInits )
else
if
(
Value
==
1
)
else
if
(
Value
==
1
)
printf
(
"1"
);
printf
(
"1"
);
else
if
(
Value
==
2
)
else
if
(
Value
==
2
)
printf
(
"
x
"
);
printf
(
"
2
"
);
else
if
(
Value
==
3
)
else
if
(
Value
==
3
)
printf
(
"X"
);
printf
(
"3"
);
else
if
(
Value
==
4
)
printf
(
"4"
);
else
if
(
Value
==
5
)
printf
(
"5"
);
else
assert
(
0
);
else
assert
(
0
);
}
}
printf
(
"
\n
"
);
printf
(
"
\n
"
);
...
...
src/base/abci/abc.c
View file @
c86a13f0
...
@@ -399,8 +399,9 @@ static int Abc_CommandAbc9Bmc ( Abc_Frame_t * pAbc, int argc, cha
...
@@ -399,8 +399,9 @@ static int Abc_CommandAbc9Bmc ( Abc_Frame_t * pAbc, int argc, cha
static
int
Abc_CommandAbc9ICheck
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9ICheck
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9SatTest
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9SatTest
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9FunFaTest
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9FunFaTest
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9Tulip
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9Inse
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9Lilac
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9Maxi
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
static
int
Abc_CommandAbc9Bmci
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
);
//static int Abc_CommandAbc9PoPart2 ( Abc_Frame_t * pAbc, int argc, char ** argv );
//static int Abc_CommandAbc9PoPart2 ( Abc_Frame_t * pAbc, int argc, char ** argv );
//static int Abc_CommandAbc9CexCut ( Abc_Frame_t * pAbc, int argc, char ** argv );
//static int Abc_CommandAbc9CexCut ( Abc_Frame_t * pAbc, int argc, char ** argv );
//static int Abc_CommandAbc9CexMerge ( Abc_Frame_t * pAbc, int argc, char ** argv );
//static int Abc_CommandAbc9CexMerge ( Abc_Frame_t * pAbc, int argc, char ** argv );
...
@@ -964,8 +965,9 @@ void Abc_Init( Abc_Frame_t * pAbc )
...
@@ -964,8 +965,9 @@ void Abc_Init( Abc_Frame_t * pAbc )
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&icheck"
,
Abc_CommandAbc9ICheck
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&icheck"
,
Abc_CommandAbc9ICheck
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&sattest"
,
Abc_CommandAbc9SatTest
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&sattest"
,
Abc_CommandAbc9SatTest
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&funfatest"
,
Abc_CommandAbc9FunFaTest
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&funfatest"
,
Abc_CommandAbc9FunFaTest
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&tulip"
,
Abc_CommandAbc9Tulip
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&inse"
,
Abc_CommandAbc9Inse
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&lilac"
,
Abc_CommandAbc9Lilac
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&maxi"
,
Abc_CommandAbc9Maxi
,
0
);
Cmd_CommandAdd
(
pAbc
,
"ABC9"
,
"&bmci"
,
Abc_CommandAbc9Bmci
,
0
);
// Cmd_CommandAdd( pAbc, "ABC9", "&popart2", Abc_CommandAbc9PoPart2, 0 );
// Cmd_CommandAdd( pAbc, "ABC9", "&popart2", Abc_CommandAbc9PoPart2, 0 );
// Cmd_CommandAdd( pAbc, "ABC9", "&cexcut", Abc_CommandAbc9CexCut, 0 );
// Cmd_CommandAdd( pAbc, "ABC9", "&cexcut", Abc_CommandAbc9CexCut, 0 );
// Cmd_CommandAdd( pAbc, "ABC9", "&cexmerge", Abc_CommandAbc9CexMerge, 0 );
// Cmd_CommandAdd( pAbc, "ABC9", "&cexmerge", Abc_CommandAbc9CexMerge, 0 );
...
@@ -32751,9 +32753,104 @@ usage:
...
@@ -32751,9 +32753,104 @@ usage:
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
int
Abc_CommandAbc9
Tulip
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
int
Abc_CommandAbc9
Inse
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
{
extern
Vec_Int_t
*
Gia_ManTulipTest
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vInit
,
int
nFrames
,
int
nWords
,
int
nTimeOut
,
int
fSim
,
int
fVerbose
);
extern
Vec_Int_t
*
Gia_ManInseTest
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vInit
,
int
nFrames
,
int
nWords
,
int
nTimeOut
,
int
fSim
,
int
fVerbose
);
int
c
,
nFrames
=
10
,
nWords
=
1000
,
nTimeOut
=
0
,
fSim
=
0
,
fVerbose
=
0
;
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"FWTsvh"
)
)
!=
EOF
)
{
switch
(
c
)
{
case
'F'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-F
\"
should be followed by an integer.
\n
"
);
goto
usage
;
}
nFrames
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
nFrames
<
0
)
goto
usage
;
break
;
case
'W'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-W
\"
should be followed by an integer.
\n
"
);
goto
usage
;
}
nWords
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
nWords
<
0
)
goto
usage
;
break
;
case
'T'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-T
\"
should be followed by an integer.
\n
"
);
goto
usage
;
}
nTimeOut
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
nTimeOut
<
0
)
goto
usage
;
break
;
case
's'
:
fSim
^=
1
;
break
;
case
'v'
:
fVerbose
^=
1
;
break
;
case
'h'
:
goto
usage
;
default:
goto
usage
;
}
}
if
(
pAbc
->
pGia
==
NULL
)
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9Inse(): There is no AIG.
\n
"
);
return
0
;
}
if
(
Gia_ManRegNum
(
pAbc
->
pGia
)
==
0
)
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9Inse(): AIG is combinational.
\n
"
);
return
0
;
}
if
(
pAbc
->
pGia
->
vInitClasses
!=
NULL
)
{
Abc_Print
(
1
,
"Abc_CommandAbc9Inse(): All-0 initial state is assumed.
\n
"
);
Vec_IntFreeP
(
&
pAbc
->
pGia
->
vInitClasses
);
}
pAbc
->
pGia
->
vInitClasses
=
Gia_ManInseTest
(
pAbc
->
pGia
,
NULL
,
nFrames
,
nWords
,
nTimeOut
,
fSim
,
fVerbose
);
return
0
;
usage:
Abc_Print
(
-
2
,
"usage: &inse [-FWT num] [-svh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
experimental procedure
\n
"
);
Abc_Print
(
-
2
,
"
\t
-F num : the number of timeframes [default = %d]
\n
"
,
nFrames
);
Abc_Print
(
-
2
,
"
\t
-W num : the number of machine words [default = %d]
\n
"
,
nWords
);
Abc_Print
(
-
2
,
"
\t
-T num : approximate global runtime limit in seconds [default = %d]
\n
"
,
nTimeOut
);
Abc_Print
(
-
2
,
"
\t
-s : toggles using ternary simulation [default = %s]
\n
"
,
fSim
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggles printing verbose information [default = %s]
\n
"
,
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
return
1
;
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
int
Abc_CommandAbc9Maxi
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
extern
Vec_Int_t
*
Gia_ManMaxiTest
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vInit
,
int
nFrames
,
int
nWords
,
int
nTimeOut
,
int
fSim
,
int
fVerbose
);
Vec_Int_t
*
vTemp
;
Vec_Int_t
*
vTemp
;
int
c
,
nFrames
=
5
,
nWords
=
1000
,
nTimeOut
=
0
,
fSim
=
0
,
fVerbose
=
0
;
int
c
,
nFrames
=
5
,
nWords
=
1000
,
nTimeOut
=
0
,
fSim
=
0
,
fVerbose
=
0
;
Extra_UtilGetoptReset
();
Extra_UtilGetoptReset
();
...
@@ -32808,20 +32905,20 @@ int Abc_CommandAbc9Tulip( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -32808,20 +32905,20 @@ int Abc_CommandAbc9Tulip( Abc_Frame_t * pAbc, int argc, char ** argv )
}
}
if
(
pAbc
->
pGia
==
NULL
)
if
(
pAbc
->
pGia
==
NULL
)
{
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9
Tulip
(): There is no AIG.
\n
"
);
Abc_Print
(
-
1
,
"Abc_CommandAbc9
Maxi
(): There is no AIG.
\n
"
);
return
0
;
return
0
;
}
}
if
(
Gia_ManRegNum
(
pAbc
->
pGia
)
==
0
)
if
(
Gia_ManRegNum
(
pAbc
->
pGia
)
==
0
)
{
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9
Tulip
(): AIG is combinational.
\n
"
);
Abc_Print
(
-
1
,
"Abc_CommandAbc9
Maxi
(): AIG is combinational.
\n
"
);
return
0
;
return
0
;
}
}
pAbc
->
pGia
->
vInitClasses
=
Gia_Man
Tulip
Test
(
pAbc
->
pGia
,
vTemp
=
pAbc
->
pGia
->
vInitClasses
,
nFrames
,
nWords
,
nTimeOut
,
fSim
,
fVerbose
);
pAbc
->
pGia
->
vInitClasses
=
Gia_Man
Maxi
Test
(
pAbc
->
pGia
,
vTemp
=
pAbc
->
pGia
->
vInitClasses
,
nFrames
,
nWords
,
nTimeOut
,
fSim
,
fVerbose
);
Vec_IntFreeP
(
&
vTemp
);
Vec_IntFreeP
(
&
vTemp
);
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage: &
tulip
[-FWT num] [-svh]
\n
"
);
Abc_Print
(
-
2
,
"usage: &
maxi
[-FWT num] [-svh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
experimental procedure
\n
"
);
Abc_Print
(
-
2
,
"
\t
experimental procedure
\n
"
);
Abc_Print
(
-
2
,
"
\t
-F num : the number of timeframes [default = %d]
\n
"
,
nFrames
);
Abc_Print
(
-
2
,
"
\t
-F num : the number of timeframes [default = %d]
\n
"
,
nFrames
);
Abc_Print
(
-
2
,
"
\t
-W num : the number of machine words [default = %d]
\n
"
,
nWords
);
Abc_Print
(
-
2
,
"
\t
-W num : the number of machine words [default = %d]
\n
"
,
nWords
);
...
@@ -32843,9 +32940,9 @@ usage:
...
@@ -32843,9 +32940,9 @@ usage:
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
int
Abc_CommandAbc9
Lilac
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
int
Abc_CommandAbc9
Bmci
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
{
extern
int
Gia_Man
Lilac
Test
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vInit
,
int
nFrames
,
int
nWords
,
int
nTimeOut
,
int
fSim
,
int
fVerbose
);
extern
int
Gia_Man
Bmci
Test
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vInit
,
int
nFrames
,
int
nWords
,
int
nTimeOut
,
int
fSim
,
int
fVerbose
);
int
c
,
nFrames
=
1000
,
nWords
=
1000
,
nTimeOut
=
0
,
fSim
=
0
,
fVerbose
=
0
;
int
c
,
nFrames
=
1000
,
nWords
=
1000
,
nTimeOut
=
0
,
fSim
=
0
,
fVerbose
=
0
;
Extra_UtilGetoptReset
();
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"FWTsvh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"FWTsvh"
)
)
!=
EOF
)
...
@@ -32899,24 +32996,24 @@ int Abc_CommandAbc9Lilac( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -32899,24 +32996,24 @@ int Abc_CommandAbc9Lilac( Abc_Frame_t * pAbc, int argc, char ** argv )
}
}
if
(
pAbc
->
pGia
==
NULL
)
if
(
pAbc
->
pGia
==
NULL
)
{
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9
Lilac
(): There is no AIG.
\n
"
);
Abc_Print
(
-
1
,
"Abc_CommandAbc9
Bmci
(): There is no AIG.
\n
"
);
return
0
;
return
0
;
}
}
if
(
Gia_ManRegNum
(
pAbc
->
pGia
)
==
0
)
if
(
Gia_ManRegNum
(
pAbc
->
pGia
)
==
0
)
{
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9
Lilac
(): AIG is combinational.
\n
"
);
Abc_Print
(
-
1
,
"Abc_CommandAbc9
Bmci
(): AIG is combinational.
\n
"
);
return
0
;
return
0
;
}
}
if
(
pAbc
->
pGia
->
vInitClasses
==
NULL
)
if
(
pAbc
->
pGia
->
vInitClasses
==
NULL
)
{
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9
Lilac
(): Init array is not given.
\n
"
);
Abc_Print
(
-
1
,
"Abc_CommandAbc9
Bmci
(): Init array is not given.
\n
"
);
return
0
;
return
0
;
}
}
Gia_Man
Lilac
Test
(
pAbc
->
pGia
,
pAbc
->
pGia
->
vInitClasses
,
nFrames
,
nWords
,
nTimeOut
,
fSim
,
fVerbose
);
Gia_Man
Bmci
Test
(
pAbc
->
pGia
,
pAbc
->
pGia
->
vInitClasses
,
nFrames
,
nWords
,
nTimeOut
,
fSim
,
fVerbose
);
return
0
;
return
0
;
usage:
usage:
Abc_Print
(
-
2
,
"usage: &
lilac
[-FWT num] [-svh]
\n
"
);
Abc_Print
(
-
2
,
"usage: &
bmci
[-FWT num] [-svh]
\n
"
);
Abc_Print
(
-
2
,
"
\t
experimental procedure
\n
"
);
Abc_Print
(
-
2
,
"
\t
experimental procedure
\n
"
);
Abc_Print
(
-
2
,
"
\t
-F num : the number of timeframes [default = %d]
\n
"
,
nFrames
);
Abc_Print
(
-
2
,
"
\t
-F num : the number of timeframes [default = %d]
\n
"
,
nFrames
);
Abc_Print
(
-
2
,
"
\t
-W num : the number of machine words [default = %d]
\n
"
,
nWords
);
Abc_Print
(
-
2
,
"
\t
-W num : the number of machine words [default = %d]
\n
"
,
nWords
);
src/sat/bmc/bmc
Lilac
.c
→
src/sat/bmc/bmc
Bmci
.c
View file @
c86a13f0
/**CFile****************************************************************
/**CFile****************************************************************
FileName [bmc
Lilac
.c]
FileName [bmc
Bmci
.c]
SystemName [ABC: Logic synthesis and verification system.]
SystemName [ABC: Logic synthesis and verification system.]
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
Date [Ver. 1.0. Started - June 20, 2005.]
Date [Ver. 1.0. Started - June 20, 2005.]
Revision [$Id: bmc
Lilac
.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $]
Revision [$Id: bmc
Bmci
.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $]
***********************************************************************/
***********************************************************************/
...
@@ -88,7 +88,7 @@ static inline void Cnf_DataLiftGia( Cnf_Dat_t * p, Gia_Man_t * pGia, int nVarsPl
...
@@ -88,7 +88,7 @@ static inline void Cnf_DataLiftGia( Cnf_Dat_t * p, Gia_Man_t * pGia, int nVarsPl
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
void
Bmc_
Lilac
Unfold
(
Gia_Man_t
*
pNew
,
Gia_Man_t
*
p
,
Vec_Int_t
*
vFFLits
,
int
fPiReuse
)
void
Bmc_
Bmci
Unfold
(
Gia_Man_t
*
pNew
,
Gia_Man_t
*
p
,
Vec_Int_t
*
vFFLits
,
int
fPiReuse
)
{
{
Gia_Obj_t
*
pObj
;
Gia_Obj_t
*
pObj
;
int
i
;
int
i
;
...
@@ -115,7 +115,7 @@ void Bmc_LilacUnfold( Gia_Man_t * pNew, Gia_Man_t * p, Vec_Int_t * vFFLits, int
...
@@ -115,7 +115,7 @@ void Bmc_LilacUnfold( Gia_Man_t * pNew, Gia_Man_t * p, Vec_Int_t * vFFLits, int
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
int
Bmc_
Lilac
Part_rec
(
Gia_Man_t
*
pNew
,
Vec_Int_t
*
vSatMap
,
int
iIdNew
,
Gia_Man_t
*
pPart
,
Vec_Int_t
*
vPartMap
,
Vec_Int_t
*
vCopies
)
int
Bmc_
Bmci
Part_rec
(
Gia_Man_t
*
pNew
,
Vec_Int_t
*
vSatMap
,
int
iIdNew
,
Gia_Man_t
*
pPart
,
Vec_Int_t
*
vPartMap
,
Vec_Int_t
*
vCopies
)
{
{
Gia_Obj_t
*
pObj
=
Gia_ManObj
(
pNew
,
iIdNew
);
Gia_Obj_t
*
pObj
=
Gia_ManObj
(
pNew
,
iIdNew
);
int
iLitPart0
,
iLitPart1
,
iRes
;
int
iLitPart0
,
iLitPart1
,
iRes
;
...
@@ -129,8 +129,8 @@ int Bmc_LilacPart_rec( Gia_Man_t * pNew, Vec_Int_t * vSatMap, int iIdNew, Gia_Ma
...
@@ -129,8 +129,8 @@ int Bmc_LilacPart_rec( Gia_Man_t * pNew, Vec_Int_t * vSatMap, int iIdNew, Gia_Ma
return
iRes
;
return
iRes
;
}
}
assert
(
Gia_ObjIsAnd
(
pObj
)
);
assert
(
Gia_ObjIsAnd
(
pObj
)
);
iLitPart0
=
Bmc_
Lilac
Part_rec
(
pNew
,
vSatMap
,
Gia_ObjFaninId0
(
pObj
,
iIdNew
),
pPart
,
vPartMap
,
vCopies
);
iLitPart0
=
Bmc_
Bmci
Part_rec
(
pNew
,
vSatMap
,
Gia_ObjFaninId0
(
pObj
,
iIdNew
),
pPart
,
vPartMap
,
vCopies
);
iLitPart1
=
Bmc_
Lilac
Part_rec
(
pNew
,
vSatMap
,
Gia_ObjFaninId1
(
pObj
,
iIdNew
),
pPart
,
vPartMap
,
vCopies
);
iLitPart1
=
Bmc_
Bmci
Part_rec
(
pNew
,
vSatMap
,
Gia_ObjFaninId1
(
pObj
,
iIdNew
),
pPart
,
vPartMap
,
vCopies
);
iLitPart0
=
Abc_LitNotCond
(
iLitPart0
,
Gia_ObjFaninC0
(
pObj
)
);
iLitPart0
=
Abc_LitNotCond
(
iLitPart0
,
Gia_ObjFaninC0
(
pObj
)
);
iLitPart1
=
Abc_LitNotCond
(
iLitPart1
,
Gia_ObjFaninC1
(
pObj
)
);
iLitPart1
=
Abc_LitNotCond
(
iLitPart1
,
Gia_ObjFaninC1
(
pObj
)
);
Vec_IntPush
(
vPartMap
,
iIdNew
);
Vec_IntPush
(
vPartMap
,
iIdNew
);
...
@@ -138,7 +138,7 @@ int Bmc_LilacPart_rec( Gia_Man_t * pNew, Vec_Int_t * vSatMap, int iIdNew, Gia_Ma
...
@@ -138,7 +138,7 @@ int Bmc_LilacPart_rec( Gia_Man_t * pNew, Vec_Int_t * vSatMap, int iIdNew, Gia_Ma
Vec_IntWriteEntry
(
vCopies
,
iIdNew
,
iRes
);
Vec_IntWriteEntry
(
vCopies
,
iIdNew
,
iRes
);
return
iRes
;
return
iRes
;
}
}
Gia_Man_t
*
Bmc_
Lilac
Part
(
Gia_Man_t
*
pNew
,
Vec_Int_t
*
vSatMap
,
Vec_Int_t
*
vMiters
,
Vec_Int_t
*
vPartMap
,
Vec_Int_t
*
vCopies
)
Gia_Man_t
*
Bmc_
Bmci
Part
(
Gia_Man_t
*
pNew
,
Vec_Int_t
*
vSatMap
,
Vec_Int_t
*
vMiters
,
Vec_Int_t
*
vPartMap
,
Vec_Int_t
*
vCopies
)
{
{
Gia_Man_t
*
pPart
;
Gia_Man_t
*
pPart
;
int
i
,
iLit
,
iLitPart
;
int
i
,
iLit
,
iLitPart
;
...
@@ -153,7 +153,7 @@ Gia_Man_t * Bmc_LilacPart( Gia_Man_t * pNew, Vec_Int_t * vSatMap, Vec_Int_t * vM
...
@@ -153,7 +153,7 @@ Gia_Man_t * Bmc_LilacPart( Gia_Man_t * pNew, Vec_Int_t * vSatMap, Vec_Int_t * vM
if
(
iLit
==
-
1
)
if
(
iLit
==
-
1
)
continue
;
continue
;
assert
(
iLit
>=
2
);
assert
(
iLit
>=
2
);
iLitPart
=
Bmc_
Lilac
Part_rec
(
pNew
,
vSatMap
,
Abc_Lit2Var
(
iLit
),
pPart
,
vPartMap
,
vCopies
);
iLitPart
=
Bmc_
Bmci
Part_rec
(
pNew
,
vSatMap
,
Abc_Lit2Var
(
iLit
),
pPart
,
vPartMap
,
vCopies
);
Gia_ManAppendCo
(
pPart
,
Abc_LitNotCond
(
iLitPart
,
Abc_LitIsCompl
(
iLit
))
);
Gia_ManAppendCo
(
pPart
,
Abc_LitNotCond
(
iLitPart
,
Abc_LitIsCompl
(
iLit
))
);
Vec_IntPush
(
vPartMap
,
-
1
);
Vec_IntPush
(
vPartMap
,
-
1
);
}
}
...
@@ -173,7 +173,7 @@ Gia_Man_t * Bmc_LilacPart( Gia_Man_t * pNew, Vec_Int_t * vSatMap, Vec_Int_t * vM
...
@@ -173,7 +173,7 @@ Gia_Man_t * Bmc_LilacPart( Gia_Man_t * pNew, Vec_Int_t * vSatMap, Vec_Int_t * vM
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
int
Bmc_
Lilac
Perform
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vInit0
,
Vec_Int_t
*
vInit1
,
int
nFrames
,
int
nWords
,
int
nTimeOut
,
int
fVerbose
)
int
Bmc_
Bmci
Perform
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vInit0
,
Vec_Int_t
*
vInit1
,
int
nFrames
,
int
nWords
,
int
nTimeOut
,
int
fVerbose
)
{
{
int
nSatVars
=
1
;
int
nSatVars
=
1
;
Vec_Int_t
*
vLits0
,
*
vLits1
,
*
vMiters
,
*
vSatMap
,
*
vPartMap
,
*
vCopies
;
Vec_Int_t
*
vLits0
,
*
vLits1
,
*
vMiters
,
*
vSatMap
,
*
vPartMap
,
*
vCopies
;
...
@@ -210,8 +210,8 @@ int Bmc_LilacPerform( Gia_Man_t * p, Vec_Int_t * vInit0, Vec_Int_t * vInit1, int
...
@@ -210,8 +210,8 @@ int Bmc_LilacPerform( Gia_Man_t * p, Vec_Int_t * vInit0, Vec_Int_t * vInit1, int
for
(
f
=
0
;
f
<
nFrames
;
f
++
)
for
(
f
=
0
;
f
<
nFrames
;
f
++
)
{
{
abctime
clk
=
Abc_Clock
();
abctime
clk
=
Abc_Clock
();
Bmc_
Lilac
Unfold
(
pNew
,
p
,
vLits0
,
0
);
Bmc_
Bmci
Unfold
(
pNew
,
p
,
vLits0
,
0
);
Bmc_
Lilac
Unfold
(
pNew
,
p
,
vLits1
,
1
);
Bmc_
Bmci
Unfold
(
pNew
,
p
,
vLits1
,
1
);
assert
(
Vec_IntSize
(
vLits0
)
==
Vec_IntSize
(
vLits1
)
);
assert
(
Vec_IntSize
(
vLits0
)
==
Vec_IntSize
(
vLits1
)
);
nMiters
=
0
;
nMiters
=
0
;
Vec_IntClear
(
vMiters
);
Vec_IntClear
(
vMiters
);
...
@@ -228,7 +228,7 @@ int Bmc_LilacPerform( Gia_Man_t * p, Vec_Int_t * vInit0, Vec_Int_t * vInit1, int
...
@@ -228,7 +228,7 @@ int Bmc_LilacPerform( Gia_Man_t * p, Vec_Int_t * vInit0, Vec_Int_t * vInit1, int
break
;
break
;
}
}
// create new part
// create new part
pPart
=
Bmc_
Lilac
Part
(
pNew
,
vSatMap
,
vMiters
,
vPartMap
,
vCopies
);
pPart
=
Bmc_
Bmci
Part
(
pNew
,
vSatMap
,
vMiters
,
vPartMap
,
vCopies
);
pCnf
=
Cnf_DeriveGiaRemapped
(
pPart
);
pCnf
=
Cnf_DeriveGiaRemapped
(
pPart
);
Cnf_DataLiftGia
(
pCnf
,
pPart
,
nSatVars
);
Cnf_DataLiftGia
(
pCnf
,
pPart
,
nSatVars
);
nSatVars
+=
pCnf
->
nVars
;
nSatVars
+=
pCnf
->
nVars
;
...
@@ -327,10 +327,10 @@ cleanup:
...
@@ -327,10 +327,10 @@ cleanup:
SeeAlso []
SeeAlso []
***********************************************************************/
***********************************************************************/
int
Gia_Man
Lilac
Test
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vInit
,
int
nFrames
,
int
nWords
,
int
nTimeOut
,
int
fSim
,
int
fVerbose
)
int
Gia_Man
Bmci
Test
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vInit
,
int
nFrames
,
int
nWords
,
int
nTimeOut
,
int
fSim
,
int
fVerbose
)
{
{
Vec_Int_t
*
vInit0
=
Vec_IntStart
(
Gia_ManRegNum
(
p
)
);
Vec_Int_t
*
vInit0
=
Vec_IntStart
(
Gia_ManRegNum
(
p
)
);
Bmc_
Lilac
Perform
(
p
,
vInit
,
vInit0
,
nFrames
,
nWords
,
nTimeOut
,
fVerbose
);
Bmc_
Bmci
Perform
(
p
,
vInit
,
vInit0
,
nFrames
,
nWords
,
nTimeOut
,
fVerbose
);
Vec_IntFree
(
vInit0
);
Vec_IntFree
(
vInit0
);
return
1
;
return
1
;
}
}
...
...
src/sat/bmc/bmc
Tulip
.c
→
src/sat/bmc/bmc
Inse
.c
View file @
c86a13f0
This diff is collapsed.
Click to expand it.
src/sat/bmc/bmcMaxi.c
0 → 100644
View file @
c86a13f0
/**CFile****************************************************************
FileName [bmcMaxi.c]
SystemName [ABC: Logic synthesis and verification system.]
PackageName [SAT-based bounded model checking.]
Synopsis []
Author [Alan Mishchenko]
Affiliation [UC Berkeley]
Date [Ver. 1.0. Started - June 20, 2005.]
Revision [$Id: bmcMaxi.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $]
***********************************************************************/
#include "bmc.h"
#include "sat/cnf/cnf.h"
#include "sat/bsat/satStore.h"
#include "aig/gia/giaAig.h"
ABC_NAMESPACE_IMPL_START
////////////////////////////////////////////////////////////////////////
/// DECLARATIONS ///
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
////////////////////////////////////////////////////////////////////////
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
static
inline
Cnf_Dat_t
*
Cnf_DeriveGiaRemapped
(
Gia_Man_t
*
p
)
{
Cnf_Dat_t
*
pCnf
;
Aig_Man_t
*
pAig
=
Gia_ManToAigSimple
(
p
);
pAig
->
nRegs
=
0
;
pCnf
=
Cnf_Derive
(
pAig
,
Aig_ManCoNum
(
pAig
)
);
Aig_ManStop
(
pAig
);
return
pCnf
;
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Gia_Man_t
*
Gia_ManMaxiUnfold
(
Gia_Man_t
*
p
,
int
nFrames
,
int
fUseVars
,
Vec_Int_t
*
vInit
)
{
Gia_Man_t
*
pNew
,
*
pTemp
;
Gia_Obj_t
*
pObj
;
int
i
,
f
;
pNew
=
Gia_ManStart
(
fUseVars
*
2
*
Gia_ManRegNum
(
p
)
+
nFrames
*
Gia_ManObjNum
(
p
)
);
pNew
->
pName
=
Abc_UtilStrsav
(
p
->
pName
);
Gia_ManHashAlloc
(
pNew
);
Gia_ManConst0
(
p
)
->
Value
=
0
;
// control/data variables
Gia_ManForEachRo
(
p
,
pObj
,
i
)
Gia_ManAppendCi
(
pNew
);
Gia_ManForEachRo
(
p
,
pObj
,
i
)
Gia_ManAppendCi
(
pNew
);
// build timeframes
assert
(
!
vInit
||
Vec_IntSize
(
vInit
)
==
Gia_ManRegNum
(
p
)
);
Gia_ManForEachRo
(
p
,
pObj
,
i
)
{
int
Value
=
Vec_IntEntry
(
vInit
,
i
);
int
iCtrl
=
Gia_ManCiLit
(
pNew
,
i
);
int
iData
=
Gia_ManCiLit
(
pNew
,
Gia_ManRegNum
(
p
)
+
i
);
// decide based on Value
if
(
Value
==
0
)
pObj
->
Value
=
fUseVars
?
Gia_ManHashAnd
(
pNew
,
iCtrl
,
iData
)
:
0
;
else
if
(
Value
==
1
)
pObj
->
Value
=
fUseVars
?
Gia_ManHashOr
(
pNew
,
Abc_LitNot
(
iCtrl
),
iData
)
:
1
;
else
if
(
Value
==
2
)
pObj
->
Value
=
Gia_ManHashAnd
(
pNew
,
iCtrl
,
iData
);
else
if
(
Value
==
3
)
pObj
->
Value
=
Gia_ManHashOr
(
pNew
,
Abc_LitNot
(
iCtrl
),
iData
);
else
if
(
Value
==
4
)
pObj
->
Value
=
0
;
else
if
(
Value
==
5
)
pObj
->
Value
=
1
;
else
assert
(
0
);
}
for
(
f
=
0
;
f
<
nFrames
;
f
++
)
{
Gia_ManForEachPi
(
p
,
pObj
,
i
)
pObj
->
Value
=
Gia_ManAppendCi
(
pNew
);
Gia_ManForEachAnd
(
p
,
pObj
,
i
)
pObj
->
Value
=
Gia_ManHashAnd
(
pNew
,
Gia_ObjFanin0Copy
(
pObj
),
Gia_ObjFanin1Copy
(
pObj
)
);
Gia_ManForEachRi
(
p
,
pObj
,
i
)
pObj
->
Value
=
Gia_ObjFanin0Copy
(
pObj
);
Gia_ManForEachRo
(
p
,
pObj
,
i
)
pObj
->
Value
=
Gia_ObjRoToRi
(
p
,
pObj
)
->
Value
;
}
Gia_ManForEachRi
(
p
,
pObj
,
i
)
pObj
->
Value
=
Gia_ManAppendCo
(
pNew
,
pObj
->
Value
);
pNew
=
Gia_ManCleanup
(
pTemp
=
pNew
);
Gia_ManStop
(
pTemp
);
assert
(
Gia_ManPiNum
(
pNew
)
==
2
*
Gia_ManRegNum
(
p
)
+
nFrames
*
Gia_ManPiNum
(
p
)
);
return
pNew
;
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Vec_Int_t
*
Gia_ManMaxiPerform
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vInit
,
int
nFrames
,
int
nTimeOut
,
int
fVerbose
)
{
int
nIterMax
=
1000000
;
int
i
,
iLit
,
Iter
,
status
;
int
nLits
,
*
pLits
;
abctime
clkTotal
=
Abc_Clock
();
abctime
clkSat
=
0
;
Vec_Int_t
*
vLits
,
*
vMap
;
sat_solver
*
pSat
;
Gia_Obj_t
*
pObj
;
Gia_Man_t
*
p0
=
Gia_ManMaxiUnfold
(
p
,
nFrames
,
0
,
vInit
);
Gia_Man_t
*
p1
=
Gia_ManMaxiUnfold
(
p
,
nFrames
,
1
,
vInit
);
Gia_Man_t
*
pM
=
Gia_ManMiter
(
p0
,
p1
,
0
,
0
,
0
,
0
,
0
);
Cnf_Dat_t
*
pCnf
=
Cnf_DeriveGiaRemapped
(
pM
);
Gia_ManStop
(
p0
);
Gia_ManStop
(
p1
);
assert
(
Gia_ManRegNum
(
p
)
>
0
);
if
(
fVerbose
)
printf
(
"Running with %d frames and %sgiven init state.
\n
"
,
nFrames
,
vInit
?
""
:
"no "
);
pSat
=
sat_solver_new
();
sat_solver_setnvars
(
pSat
,
pCnf
->
nVars
);
sat_solver_set_runtime_limit
(
pSat
,
nTimeOut
?
nTimeOut
*
CLOCKS_PER_SEC
+
Abc_Clock
()
:
0
);
for
(
i
=
0
;
i
<
pCnf
->
nClauses
;
i
++
)
if
(
!
sat_solver_addclause
(
pSat
,
pCnf
->
pClauses
[
i
],
pCnf
->
pClauses
[
i
+
1
]
)
)
assert
(
0
);
// add one large OR clause
vLits
=
Vec_IntAlloc
(
Gia_ManCoNum
(
p
)
);
Gia_ManForEachCo
(
pM
,
pObj
,
i
)
Vec_IntPush
(
vLits
,
Abc_Var2Lit
(
pCnf
->
pVarNums
[
Gia_ObjId
(
pM
,
pObj
)],
0
)
);
sat_solver_addclause
(
pSat
,
Vec_IntArray
(
vLits
),
Vec_IntArray
(
vLits
)
+
Vec_IntSize
(
vLits
)
);
// create assumptions
Vec_IntClear
(
vLits
);
Gia_ManForEachPi
(
pM
,
pObj
,
i
)
if
(
i
==
Gia_ManRegNum
(
p
)
)
break
;
else
if
(
Vec_IntEntry
(
vInit
,
i
)
==
0
||
Vec_IntEntry
(
vInit
,
i
)
==
1
)
Vec_IntPush
(
vLits
,
Abc_Var2Lit
(
pCnf
->
pVarNums
[
Gia_ObjId
(
pM
,
pObj
)],
1
)
);
if
(
fVerbose
)
{
printf
(
"Iter%6d : "
,
0
);
printf
(
"Var =%10d "
,
sat_solver_nvars
(
pSat
)
);
printf
(
"Clause =%10d "
,
sat_solver_nclauses
(
pSat
)
);
printf
(
"Conflict =%10d "
,
sat_solver_nconflicts
(
pSat
)
);
printf
(
"Subset =%6d "
,
Vec_IntSize
(
vLits
)
);
Abc_PrintTime
(
1
,
"Time"
,
clkSat
);
// ABC_PRTr( "Solver time", clkSat );
}
for
(
Iter
=
0
;
Iter
<
nIterMax
;
Iter
++
)
{
abctime
clk
=
Abc_Clock
();
status
=
sat_solver_solve
(
pSat
,
Vec_IntArray
(
vLits
),
Vec_IntArray
(
vLits
)
+
Vec_IntSize
(
vLits
),
(
ABC_INT64_T
)
0
,
(
ABC_INT64_T
)
0
,
(
ABC_INT64_T
)
0
,
(
ABC_INT64_T
)
0
);
clkSat
+=
Abc_Clock
()
-
clk
;
if
(
status
==
l_Undef
)
{
// if ( fVerbose )
// printf( "\n" );
printf
(
"Timeout reached after %d seconds and %d iterations. "
,
nTimeOut
,
Iter
);
break
;
}
if
(
status
==
l_True
)
{
// if ( fVerbose )
// printf( "\n" );
printf
(
"The problem is SAT after %d iterations. "
,
Iter
);
break
;
}
assert
(
status
==
l_False
);
nLits
=
sat_solver_final
(
pSat
,
&
pLits
);
if
(
fVerbose
)
{
printf
(
"Iter%6d : "
,
Iter
+
1
);
printf
(
"Var =%10d "
,
sat_solver_nvars
(
pSat
)
);
printf
(
"Clause =%10d "
,
sat_solver_nclauses
(
pSat
)
);
printf
(
"Conflict =%10d "
,
sat_solver_nconflicts
(
pSat
)
);
printf
(
"Subset =%6d "
,
nLits
);
Abc_PrintTime
(
1
,
"Time"
,
clkSat
);
// ABC_PRTr( "Solver time", clkSat );
}
if
(
Vec_IntSize
(
vLits
)
==
nLits
)
{
// if ( fVerbose )
// printf( "\n" );
printf
(
"Reached fixed point with %d entries after %d iterations. "
,
Vec_IntSize
(
vLits
),
Iter
+
1
);
break
;
}
// collect used literals
Vec_IntClear
(
vLits
);
for
(
i
=
0
;
i
<
nLits
;
i
++
)
Vec_IntPush
(
vLits
,
Abc_LitNot
(
pLits
[
i
])
);
}
// create map
vMap
=
Vec_IntStart
(
pCnf
->
nVars
);
Vec_IntForEachEntry
(
vLits
,
iLit
,
i
)
Vec_IntWriteEntry
(
vMap
,
Abc_Lit2Var
(
iLit
),
1
);
// create output
Vec_IntFree
(
vLits
);
vLits
=
Vec_IntDup
(
vInit
);
Gia_ManForEachPi
(
pM
,
pObj
,
i
)
if
(
i
==
Gia_ManRegNum
(
p
)
)
break
;
else
if
(
Vec_IntEntry
(
vLits
,
i
)
==
4
||
Vec_IntEntry
(
vLits
,
i
)
==
5
)
Vec_IntWriteEntry
(
vLits
,
i
,
Vec_IntEntry
(
vLits
,
i
)
);
else
if
(
(
Vec_IntEntry
(
vLits
,
i
)
==
0
||
Vec_IntEntry
(
vLits
,
i
)
==
1
)
&&
!
Vec_IntEntry
(
vMap
,
pCnf
->
pVarNums
[
Gia_ObjId
(
pM
,
pObj
)])
)
Vec_IntWriteEntry
(
vLits
,
i
,
Vec_IntEntry
(
vLits
,
i
)
|
2
);
Vec_IntFree
(
vMap
);
// cleanup
sat_solver_delete
(
pSat
);
Cnf_DataFree
(
pCnf
);
Gia_ManStop
(
pM
);
Abc_PrintTime
(
1
,
"Total runtime"
,
Abc_Clock
()
-
clkTotal
);
return
vLits
;
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Vec_Int_t
*
Gia_ManMaxiTest
(
Gia_Man_t
*
p
,
Vec_Int_t
*
vInit0
,
int
nFrames
,
int
nWords
,
int
nTimeOut
,
int
fSim
,
int
fVerbose
)
{
Vec_Int_t
*
vRes
,
*
vInit
;
vInit
=
vInit0
?
vInit0
:
Vec_IntStart
(
Gia_ManRegNum
(
p
)
);
vRes
=
Gia_ManMaxiPerform
(
p
,
vInit
,
nFrames
,
nTimeOut
,
fVerbose
);
if
(
vInit
!=
vInit0
)
Vec_IntFree
(
vInit
);
return
vRes
;
}
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////
ABC_NAMESPACE_IMPL_END
src/sat/bmc/module.make
View file @
c86a13f0
...
@@ -2,6 +2,7 @@ SRC += src/sat/bmc/bmcBmc.c \
...
@@ -2,6 +2,7 @@ SRC += src/sat/bmc/bmcBmc.c \
src/sat/bmc/bmcBmc2.c
\
src/sat/bmc/bmcBmc2.c
\
src/sat/bmc/bmcBmc3.c
\
src/sat/bmc/bmcBmc3.c
\
src/sat/bmc/bmcBmcAnd.c
\
src/sat/bmc/bmcBmcAnd.c
\
src/sat/bmc/bmcBmci.c
\
src/sat/bmc/bmcCexCut.c
\
src/sat/bmc/bmcCexCut.c
\
src/sat/bmc/bmcCexDepth.c
\
src/sat/bmc/bmcCexDepth.c
\
src/sat/bmc/bmcCexMin1.c
\
src/sat/bmc/bmcCexMin1.c
\
...
@@ -9,8 +10,8 @@ SRC += src/sat/bmc/bmcBmc.c \
...
@@ -9,8 +10,8 @@ SRC += src/sat/bmc/bmcBmc.c \
src/sat/bmc/bmcCexTools.c
\
src/sat/bmc/bmcCexTools.c
\
src/sat/bmc/bmcFault.c
\
src/sat/bmc/bmcFault.c
\
src/sat/bmc/bmcICheck.c
\
src/sat/bmc/bmcICheck.c
\
src/sat/bmc/bmc
Lilac
.c
\
src/sat/bmc/bmc
Inse
.c
\
src/sat/bmc/bmcLoad.c
\
src/sat/bmc/bmcLoad.c
\
src/sat/bmc/bmcMaxi.c
\
src/sat/bmc/bmcMulti.c
\
src/sat/bmc/bmcMulti.c
\
src/sat/bmc/bmcTulip.c
\
src/sat/bmc/bmcUnroll.c
src/sat/bmc/bmcUnroll.c
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