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
19ce8396
Commit
19ce8396
authored
Oct 19, 2011
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New abstraction code.
parent
397bebf8
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
11 deletions
+12
-11
src/aig/gia/giaAbs.c
+3
-3
src/aig/saig/saigAbsGla.c
+5
-4
src/base/abci/abc.c
+4
-4
No files found.
src/aig/gia/giaAbs.c
View file @
19ce8396
...
...
@@ -377,9 +377,9 @@ int Gia_ManPbaPerform( Gia_Man_t * pGia, int nStart, int nFrames, int nConfLimit
SeeAlso []
***********************************************************************/
int
Gia_ManGlaCbaPerform
(
Gia_Man_t
*
pGia
,
void
*
pPars
,
int
f
Us
eCnf
)
int
Gia_ManGlaCbaPerform
(
Gia_Man_t
*
pGia
,
void
*
pPars
,
int
f
Naiv
eCnf
)
{
extern
Vec_Int_t
*
Aig_GlaManTest
(
Aig_Man_t
*
pAig
,
int
nFramesMax
,
int
nConfLimit
,
int
TimeLimit
,
int
f
Us
eCnf
,
int
fVerbose
);
extern
Vec_Int_t
*
Aig_GlaManTest
(
Aig_Man_t
*
pAig
,
int
nFramesMax
,
int
nConfLimit
,
int
TimeLimit
,
int
f
Naiv
eCnf
,
int
fVerbose
);
Saig_ParBmc_t
*
p
=
(
Saig_ParBmc_t
*
)
pPars
;
Vec_Int_t
*
vGateClasses
;
Aig_Man_t
*
pAig
;
...
...
@@ -393,7 +393,7 @@ int Gia_ManGlaCbaPerform( Gia_Man_t * pGia, void * pPars, int fUseCnf )
*/
// perform abstraction
pAig
=
Gia_ManToAigSimple
(
pGia
);
vGateClasses
=
Aig_GlaManTest
(
pAig
,
p
->
nFramesMax
,
p
->
nConfLimit
,
p
->
nTimeOut
,
f
Us
eCnf
,
p
->
fVerbose
);
vGateClasses
=
Aig_GlaManTest
(
pAig
,
p
->
nFramesMax
,
p
->
nConfLimit
,
p
->
nTimeOut
,
f
Naiv
eCnf
,
p
->
fVerbose
);
Aig_ManStop
(
pAig
);
// update the map
...
...
src/aig/saig/saigAbsGla.c
View file @
19ce8396
...
...
@@ -454,7 +454,7 @@ int Aig_GlaObjAddToSolver( Aig_GlaMan_t * p, Aig_Obj_t * pObj, int k )
SeeAlso []
***********************************************************************/
Aig_GlaMan_t
*
Aig_GlaManStart
(
Aig_Man_t
*
pAig
,
int
f
Us
eCnf
)
Aig_GlaMan_t
*
Aig_GlaManStart
(
Aig_Man_t
*
pAig
,
int
f
Naiv
eCnf
)
{
Aig_GlaMan_t
*
p
;
int
i
;
...
...
@@ -482,7 +482,7 @@ Aig_GlaMan_t * Aig_GlaManStart( Aig_Man_t * pAig, int fUseCnf )
Vec_IntPush
(
p
->
vVar2Inf
,
-
1
);
// CNF computation
if
(
fUs
eCnf
)
if
(
!
fNaiv
eCnf
)
{
p
->
vLeaves
=
Vec_PtrAlloc
(
100
);
p
->
vVolume
=
Vec_PtrAlloc
(
100
);
...
...
@@ -650,7 +650,7 @@ void Aig_GlaExtendIncluded( Aig_GlaMan_t * p )
SeeAlso []
***********************************************************************/
Vec_Int_t
*
Aig_GlaManTest
(
Aig_Man_t
*
pAig
,
int
nFramesMax
,
int
nConfLimit
,
int
TimeLimit
,
int
f
Us
eCnf
,
int
fVerbose
)
Vec_Int_t
*
Aig_GlaManTest
(
Aig_Man_t
*
pAig
,
int
nFramesMax
,
int
nConfLimit
,
int
TimeLimit
,
int
f
Naiv
eCnf
,
int
fVerbose
)
{
int
nStart
=
0
;
Vec_Int_t
*
vResult
=
NULL
;
...
...
@@ -672,7 +672,7 @@ Vec_Int_t * Aig_GlaManTest( Aig_Man_t * pAig, int nFramesMax, int nConfLimit, in
}
// start the solver
p
=
Aig_GlaManStart
(
pAig
,
f
Us
eCnf
);
p
=
Aig_GlaManStart
(
pAig
,
f
Naiv
eCnf
);
p
->
nFramesMax
=
nFramesMax
;
p
->
nConfLimit
=
nConfLimit
;
p
->
fVerbose
=
fVerbose
;
...
...
@@ -774,6 +774,7 @@ Vec_Int_t * Aig_GlaManTest( Aig_Man_t * pAig, int nFramesMax, int nConfLimit, in
ABC_PRTP
(
"Total "
,
p
->
timeTotal
,
p
->
timeTotal
);
}
// prepare return value
if
(
!
fNaiveCnf
)
Aig_GlaExtendIncluded
(
p
);
vResult
=
p
->
vIncluded
;
p
->
vIncluded
=
NULL
;
Aig_GlaManStop
(
p
);
...
...
src/base/abci/abc.c
View file @
19ce8396
...
...
@@ -28888,7 +28888,7 @@ usage:
int
Abc_CommandAbc9GlaCba
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
Saig_ParBmc_t
Pars
,
*
pPars
=
&
Pars
;
int
c
,
f
UseCnf
=
1
;
int
c
,
f
NaiveCnf
=
0
;
Saig_ParBmcSetDefaultParams
(
pPars
);
pPars
->
nStart
=
0
;
//(pAbc->nFrames >= 0) ? pAbc->nFrames : 0;
pPars
->
nFramesMax
=
50
;
//pPars->nStart + 10;
...
...
@@ -28954,7 +28954,7 @@ int Abc_CommandAbc9GlaCba( Abc_Frame_t * pAbc, int argc, char ** argv )
goto
usage
;
break
;
case
'c'
:
f
Us
eCnf
^=
1
;
f
Naiv
eCnf
^=
1
;
break
;
case
'v'
:
pPars
->
fVerbose
^=
1
;
...
...
@@ -28975,7 +28975,7 @@ int Abc_CommandAbc9GlaCba( Abc_Frame_t * pAbc, int argc, char ** argv )
Abc_Print
(
-
1
,
"The network is combinational.
\n
"
);
return
0
;
}
pAbc
->
Status
=
Gia_ManGlaCbaPerform
(
pAbc
->
pGia
,
pPars
,
f
Us
eCnf
);
pAbc
->
Status
=
Gia_ManGlaCbaPerform
(
pAbc
->
pGia
,
pPars
,
f
Naiv
eCnf
);
if
(
pPars
->
nStart
==
0
)
pAbc
->
nFrames
=
pPars
->
iFrame
;
Abc_FrameReplaceCex
(
pAbc
,
&
pAbc
->
pGia
->
pCexSeq
);
...
...
@@ -28990,7 +28990,7 @@ usage:
Abc_Print
(
-
2
,
"
\t
-C num : the max number of SAT solver conflicts [default = %d]
\n
"
,
pPars
->
nConfLimit
);
Abc_Print
(
-
2
,
"
\t
-M num : the max number of flops to add (0 = not used) [default = %d]
\n
"
,
pPars
->
nFfToAddMax
);
Abc_Print
(
-
2
,
"
\t
-T num : an approximate timeout, in seconds [default = %d]
\n
"
,
pPars
->
nTimeOut
);
Abc_Print
(
-
2
,
"
\t
-c : toggle using
smarter CNF computation [default = %s]
\n
"
,
fUs
eCnf
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-c : toggle using
naive CNF computation [default = %s]
\n
"
,
fNaiv
eCnf
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-v : toggle printing verbose information [default = %s]
\n
"
,
pPars
->
fVerbose
?
"yes"
:
"no"
);
Abc_Print
(
-
2
,
"
\t
-h : print the command usage
\n
"
);
return
1
;
...
...
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