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
a1d2ba0f
Commit
a1d2ba0f
authored
Nov 04, 2013
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tuning for multi-ouptut solver.
parent
0ab8cd11
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
51 additions
and
4 deletions
+51
-4
src/base/abci/abc.c
+14
-1
src/misc/util/utilCex.c
+4
-1
src/sat/bmc/bmc.h
+1
-0
src/sat/bmc/bmcBmc3.c
+1
-1
src/sat/bmc/bmcMulti.c
+31
-1
No files found.
src/base/abci/abc.c
View file @
a1d2ba0f
...
@@ -32439,8 +32439,9 @@ int Abc_CommandAbc9MultiProve( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -32439,8 +32439,9 @@ int Abc_CommandAbc9MultiProve( Abc_Frame_t * pAbc, int argc, char ** argv )
pPars
->
TimeOutGlo
=
30
;
pPars
->
TimeOutGlo
=
30
;
pPars
->
TimeOutLoc
=
2
;
pPars
->
TimeOutLoc
=
2
;
pPars
->
TimeOutInc
=
100
;
pPars
->
TimeOutInc
=
100
;
pPars
->
TimePerOut
=
0
;
Extra_UtilGetoptReset
();
Extra_UtilGetoptReset
();
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"TLMsdvwh"
)
)
!=
EOF
)
while
(
(
c
=
Extra_UtilGetopt
(
argc
,
argv
,
"TLM
H
sdvwh"
)
)
!=
EOF
)
{
{
switch
(
c
)
switch
(
c
)
{
{
...
@@ -32477,6 +32478,17 @@ int Abc_CommandAbc9MultiProve( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -32477,6 +32478,17 @@ int Abc_CommandAbc9MultiProve( Abc_Frame_t * pAbc, int argc, char ** argv )
if
(
pPars
->
TimeOutInc
<=
0
)
if
(
pPars
->
TimeOutInc
<=
0
)
goto
usage
;
goto
usage
;
break
;
break
;
case
'H'
:
if
(
globalUtilOptind
>=
argc
)
{
Abc_Print
(
-
1
,
"Command line switch
\"
-M
\"
should be followed by an integer.
\n
"
);
goto
usage
;
}
pPars
->
TimePerOut
=
atoi
(
argv
[
globalUtilOptind
]);
globalUtilOptind
++
;
if
(
pPars
->
TimePerOut
<=
0
)
goto
usage
;
break
;
case
's'
:
case
's'
:
pPars
->
fUseSyn
^=
1
;
pPars
->
fUseSyn
^=
1
;
break
;
break
;
...
@@ -32512,6 +32524,7 @@ usage:
...
@@ -32512,6 +32524,7 @@ usage:
Abc_Print
(
-
2
,
"
\t
-T num : approximate global runtime limit in seconds [default = %d]
\n
"
,
pPars
->
TimeOutGlo
);
Abc_Print
(
-
2
,
"
\t
-T num : approximate global runtime limit in seconds [default = %d]
\n
"
,
pPars
->
TimeOutGlo
);
Abc_Print
(
-
2
,
"
\t
-L num : approximate local runtime limit in seconds [default = %d]
\n
"
,
pPars
->
TimeOutLoc
);
Abc_Print
(
-
2
,
"
\t
-L num : approximate local runtime limit in seconds [default = %d]
\n
"
,
pPars
->
TimeOutLoc
);
Abc_Print
(
-
2
,
"
\t
-M num : percentage of local runtime limit increase [default = %d]
\n
"
,
pPars
->
TimeOutInc
);
Abc_Print
(
-
2
,
"
\t
-M num : percentage of local runtime limit increase [default = %d]
\n
"
,
pPars
->
TimeOutInc
);
Abc_Print
(
-
2
,
"
\t
-H num : timeout per output in miliseconds [default = %d]
\n
"
,
pPars
->
TimePerOut
);
Abc_Print
(
-
2
,
"
\t
-s : toggle using combinational synthesis [default = %s]
\n
"
,
pPars
->
fUseSyn
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-s : toggle using combinational synthesis [default = %s]
\n
"
,
pPars
->
fUseSyn
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-d : toggle dumping invariant into a file [default = %s]
\n
"
,
pPars
->
fDumpFinal
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-d : toggle dumping invariant into a file [default = %s]
\n
"
,
pPars
->
fDumpFinal
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
pPars
->
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
pPars
->
fVerbose
?
"yes"
:
"no"
);
src/misc/util/utilCex.c
View file @
a1d2ba0f
...
@@ -351,7 +351,10 @@ void Abc_CexFreeP( Abc_Cex_t ** p )
...
@@ -351,7 +351,10 @@ void Abc_CexFreeP( Abc_Cex_t ** p )
{
{
if
(
*
p
==
NULL
)
if
(
*
p
==
NULL
)
return
;
return
;
ABC_FREE
(
*
p
);
if
(
*
p
==
(
Abc_Cex_t
*
)(
ABC_PTRINT_T
)
1
)
*
p
=
NULL
;
else
ABC_FREE
(
*
p
);
}
}
/**Function*************************************************************
/**Function*************************************************************
...
...
src/sat/bmc/bmc.h
View file @
a1d2ba0f
...
@@ -100,6 +100,7 @@ struct Bmc_MulPar_t_
...
@@ -100,6 +100,7 @@ struct Bmc_MulPar_t_
int
TimeOutGlo
;
int
TimeOutGlo
;
int
TimeOutLoc
;
int
TimeOutLoc
;
int
TimeOutInc
;
int
TimeOutInc
;
int
TimePerOut
;
int
fUseSyn
;
int
fUseSyn
;
int
fDumpFinal
;
int
fDumpFinal
;
int
fVerbose
;
int
fVerbose
;
...
...
src/sat/bmc/bmcBmc3.c
View file @
a1d2ba0f
...
@@ -1649,7 +1649,7 @@ nTimeSat += Abc_Clock() - clk2;
...
@@ -1649,7 +1649,7 @@ nTimeSat += Abc_Clock() - clk2;
Vec_PtrWriteEntry
(
p
->
vCexes
,
k
,
Abc_CexDup
(
pCexNew
,
Saig_ManRegNum
(
pAig
))
);
Vec_PtrWriteEntry
(
p
->
vCexes
,
k
,
Abc_CexDup
(
pCexNew
,
Saig_ManRegNum
(
pAig
))
);
}
}
Abc_CexFreeP
(
&
pCexNew0
);
Abc_CexFreeP
(
&
pCexNew0
);
Abc_CexFree
P
(
&
pCexNew
);
Abc_CexFree
(
pCexNew
);
}
}
else
else
{
{
...
...
src/sat/bmc/bmcMulti.c
View file @
a1d2ba0f
...
@@ -75,6 +75,34 @@ Vec_Int_t * Gia_ManProcessOutputs( Vec_Ptr_t * vCexesIn, Vec_Ptr_t * vCexesOut,
...
@@ -75,6 +75,34 @@ Vec_Int_t * Gia_ManProcessOutputs( Vec_Ptr_t * vCexesIn, Vec_Ptr_t * vCexesOut,
/**Function*************************************************************
/**Function*************************************************************
Synopsis [Counts the number of constant 0 POs.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
int
Gia_ManCountConst0PosGia
(
Gia_Man_t
*
p
)
{
Gia_Obj_t
*
pObj
;
int
i
,
Counter
=
0
;
Gia_ManForEachPo
(
p
,
pObj
,
i
)
Counter
+=
(
Gia_ObjFaninLit0p
(
p
,
pObj
)
==
0
);
return
Counter
;
}
int
Gia_ManCountConst0Pos
(
Aig_Man_t
*
p
)
{
Aig_Obj_t
*
pObj
;
int
i
,
Counter
=
0
;
Saig_ManForEachPo
(
p
,
pObj
,
i
)
Counter
+=
(
Aig_ObjChild0
(
pObj
)
==
Aig_ManConst0
(
p
));
return
Counter
;
}
/**Function*************************************************************
Synopsis []
Synopsis []
Description []
Description []
...
@@ -186,7 +214,7 @@ Vec_Ptr_t * Gia_ManMultiProveAig( Aig_Man_t * p, Bmc_MulPar_t * pPars )
...
@@ -186,7 +214,7 @@ Vec_Ptr_t * Gia_ManMultiProveAig( Aig_Man_t * p, Bmc_MulPar_t * pPars )
pParsBmc
->
fNotVerbose
=
1
;
pParsBmc
->
fNotVerbose
=
1
;
pParsBmc
->
fSilent
=
!
pPars
->
fVeryVerbose
;
pParsBmc
->
fSilent
=
!
pPars
->
fVeryVerbose
;
pParsBmc
->
nTimeOut
=
TimeOutLoc
;
pParsBmc
->
nTimeOut
=
TimeOutLoc
;
pParsBmc
->
nTimeOutOne
=
100
;
pParsBmc
->
nTimeOutOne
=
pPars
->
TimePerOut
;
RetValue
*=
Saig_ManBmcScalable
(
p
,
pParsBmc
);
RetValue
*=
Saig_ManBmcScalable
(
p
,
pParsBmc
);
if
(
pPars
->
fVeryVerbose
)
if
(
pPars
->
fVeryVerbose
)
Abc_Print
(
1
,
"Some outputs are SAT (%d out of %d) after %d frames.
\n
"
,
Abc_Print
(
1
,
"Some outputs are SAT (%d out of %d) after %d frames.
\n
"
,
...
@@ -225,6 +253,8 @@ Vec_Ptr_t * Gia_ManMultiProveAig( Aig_Man_t * p, Bmc_MulPar_t * pPars )
...
@@ -225,6 +253,8 @@ Vec_Ptr_t * Gia_ManMultiProveAig( Aig_Man_t * p, Bmc_MulPar_t * pPars )
TimeOutLoc
+=
TimeOutLoc
*
pPars
->
TimeOutInc
/
100
;
TimeOutLoc
+=
TimeOutLoc
*
pPars
->
TimeOutInc
/
100
;
}
}
Vec_IntFree
(
vOutMap
);
Vec_IntFree
(
vOutMap
);
if
(
pPars
->
fVerbose
)
printf
(
"The number of const0 POs = %d.
\n
"
,
Gia_ManCountConst0Pos
(
p
)
);
if
(
pPars
->
fDumpFinal
)
if
(
pPars
->
fDumpFinal
)
{
{
char
*
pFileName
=
Extra_FileNameGenericAppend
(
p
->
pName
,
"_out.aig"
);
char
*
pFileName
=
Extra_FileNameGenericAppend
(
p
->
pName
,
"_out.aig"
);
...
...
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