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
fa32acde
Commit
fa32acde
authored
Dec 21, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Exprimental features in tech-mapping.
parent
6733abd7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
123 additions
and
91 deletions
+123
-91
src/aig/gia/giaIf.c
+123
-91
No files found.
src/aig/gia/giaIf.c
View file @
fa32acde
...
...
@@ -1532,87 +1532,15 @@ int Gia_ManFromIfLogicFindCell( If_Man_t * pIfMan, Gia_Man_t * pNew, Gia_Man_t *
SeeAlso []
***********************************************************************/
Gia_Man_t
*
Gia_ManFromIfLogic
(
If_Man_t
*
pIfMan
)
int
Gia_ManFromIfLogicCofVars
(
Gia_Man_t
*
pNew
,
If_Man_t
*
pIfMan
,
If_Cut_t
*
pCutBest
,
Vec_Int_t
*
vLeaves
,
Vec_Int_t
*
vLeaves2
,
Vec_Int_t
*
vCover
,
Vec_Int_t
*
vMapping
,
Vec_Int_t
*
vMapping2
)
{
Gia_Man_t
*
pNew
,
*
pHashed
=
NULL
;
If_Cut_t
*
pCutBest
;
If_Obj_t
*
pIfObj
,
*
pIfLeaf
;
Vec_Int_t
*
vMapping
,
*
vMapping2
,
*
vPacking
=
NULL
;
Vec_Int_t
*
vLeaves
,
*
vLeaves2
,
*
vCover
,
*
vLits
;
Vec_Int_t
*
vPiVars
=
NULL
,
*
vPoVars
=
NULL
;
sat_solver
*
pSat
=
NULL
;
Ifn_Ntk_t
*
pNtkCell
=
NULL
;
int
i
,
k
,
nLutMax
=
-
1
,
Entry
;
assert
(
!
pIfMan
->
pPars
->
fDeriveLuts
||
pIfMan
->
pPars
->
fTruth
);
// if ( pIfMan->pPars->fEnableCheck07 )
// pIfMan->pPars->fDeriveLuts = 0;
// start mapping and packing
vMapping
=
Vec_IntStart
(
If_ManObjNum
(
pIfMan
)
);
vMapping2
=
Vec_IntStart
(
1
);
if
(
pIfMan
->
pPars
->
fDeriveLuts
&&
(
pIfMan
->
pPars
->
pLutStruct
||
pIfMan
->
pPars
->
fEnableCheck75
||
pIfMan
->
pPars
->
fEnableCheck75u
||
pIfMan
->
pPars
->
fEnableCheck07
||
pIfMan
->
pPars
->
fUseDsdTune
)
)
{
vPacking
=
Vec_IntAlloc
(
1000
);
Vec_IntPush
(
vPacking
,
0
);
}
// create new manager
pNew
=
Gia_ManStart
(
If_ManObjNum
(
pIfMan
)
);
// iterate through nodes used in the mapping
vLits
=
Vec_IntAlloc
(
1000
);
vCover
=
Vec_IntAlloc
(
1
<<
16
);
vLeaves
=
Vec_IntAlloc
(
16
);
vLeaves2
=
Vec_IntAlloc
(
16
);
If_ManCleanCutData
(
pIfMan
);
If_ManForEachObj
(
pIfMan
,
pIfObj
,
i
)
{
if
(
pIfObj
->
nRefs
==
0
&&
!
If_ObjIsTerm
(
pIfObj
)
)
continue
;
if
(
If_ObjIsAnd
(
pIfObj
)
)
{
pCutBest
=
If_ObjCutBest
(
pIfObj
);
// perform sorting of cut leaves by delay, so that the slowest pin drives the fastest input of the LUT
if
(
!
pIfMan
->
pPars
->
fUseTtPerm
&&
!
pIfMan
->
pPars
->
fDelayOpt
&&
!
pIfMan
->
pPars
->
fDelayOptLut
&&
!
pIfMan
->
pPars
->
fDsdBalance
&&
!
pIfMan
->
pPars
->
pLutStruct
&&
!
pIfMan
->
pPars
->
fUserRecLib
&&
!
pIfMan
->
pPars
->
nGateSize
&&
!
pIfMan
->
pPars
->
fEnableCheck75
&&
!
pIfMan
->
pPars
->
fEnableCheck75u
&&
!
pIfMan
->
pPars
->
fEnableCheck07
&&
!
pIfMan
->
pPars
->
fUseDsdTune
&&
!
pIfMan
->
pPars
->
fUseCofVars
&&
!
pIfMan
->
pPars
->
fUseAndVars
)
If_CutRotatePins
(
pIfMan
,
pCutBest
);
// collect leaves of the best cut
Vec_IntClear
(
vLeaves
);
If_CutForEachLeaf
(
pIfMan
,
pCutBest
,
pIfLeaf
,
k
)
Vec_IntPush
(
vLeaves
,
pIfLeaf
->
iCopy
);
// perform one of the two types of mapping: with and without structures
if
(
pIfMan
->
pPars
->
fUseDsd
&&
pIfMan
->
pPars
->
pLutStruct
)
{
if
(
pSat
==
NULL
)
pSat
=
(
sat_solver
*
)
If_ManSatBuildXY
(
(
int
)(
pIfMan
->
pPars
->
pLutStruct
[
0
]
-
'0'
)
);
if
(
pIfMan
->
pPars
->
pLutStruct
&&
pIfMan
->
pPars
->
fDeriveLuts
)
pIfObj
->
iCopy
=
Gia_ManFromIfLogicFindLut
(
pIfMan
,
pNew
,
pCutBest
,
pSat
,
vLeaves
,
vLits
,
vCover
,
vMapping
,
vMapping2
,
vPacking
);
else
pIfObj
->
iCopy
=
Gia_ManFromIfLogicCreateLut
(
pNew
,
If_CutTruthW
(
pIfMan
,
pCutBest
),
vLeaves
,
vCover
,
vMapping
,
vMapping2
);
pIfObj
->
iCopy
=
Abc_LitNotCond
(
pIfObj
->
iCopy
,
pCutBest
->
fCompl
);
}
else
if
(
pIfMan
->
pPars
->
fUseDsd
&&
pIfMan
->
pPars
->
fUseDsdTune
&&
pIfMan
->
pPars
->
fDeriveLuts
)
{
if
(
pSat
==
NULL
)
{
pSat
=
(
sat_solver
*
)
If_ManSatBuildFromCell
(
If_DsdManGetCellStr
(
pIfMan
->
pIfDsdMan
),
&
vPiVars
,
&
vPoVars
,
&
pNtkCell
);
nLutMax
=
Ifn_NtkLutSizeMax
(
pNtkCell
);
pHashed
=
Gia_ManStart
(
10000
);
Vec_IntFillExtra
(
&
pHashed
->
vCopies
,
10000
,
-
1
);
for
(
k
=
0
;
k
<
pIfMan
->
pPars
->
nLutSize
;
k
++
)
Gia_ManAppendCi
(
pHashed
);
Gia_ManHashAlloc
(
pHashed
);
}
pIfObj
->
iCopy
=
Gia_ManFromIfLogicFindCell
(
pIfMan
,
pNew
,
pHashed
,
pCutBest
,
pSat
,
vPiVars
,
vPoVars
,
pNtkCell
,
nLutMax
,
vLeaves
,
vLits
,
vCover
,
vMapping
,
vMapping2
,
vPacking
);
pIfObj
->
iCopy
=
Abc_LitNotCond
(
pIfObj
->
iCopy
,
pCutBest
->
fCompl
);
}
else
if
(
pIfMan
->
pPars
->
fUseCofVars
&&
pIfMan
->
pPars
->
fDeriveLuts
&&
(
int
)
pCutBest
->
nLeaves
>
pIfMan
->
pPars
->
nLutSize
/
2
)
{
word
pTruthCof
[
128
],
*
pTruth
=
If_CutTruthW
(
pIfMan
,
pCutBest
);
int
pVarsNew
[
16
],
nVarsNew
,
iLitCofs
[
3
];
int
nLeaves
=
pCutBest
->
nLeaves
;
int
nWords
=
Abc_Truth6WordNum
(
nLeaves
);
int
truthId
=
Abc_Lit2Var
(
pCutBest
->
iCutFunc
);
int
c
,
iVar
=
Vec_StrEntry
(
pIfMan
->
vTtVars
[
nLeaves
],
truthId
),
iTemp
,
iTopLit
;
int
k
,
RetValue
=
-
1
;
assert
(
iVar
>=
0
&&
iVar
<
nLeaves
&&
pIfMan
->
pPars
->
nLutSize
<=
13
);
for
(
c
=
0
;
c
<
2
;
c
++
)
{
...
...
@@ -1647,8 +1575,8 @@ Gia_Man_t * Gia_ManFromIfLogic( If_Man_t * pIfMan )
Vec_IntPush
(
vLeaves2
,
iLitCofs
[
0
]
);
Vec_IntPush
(
vLeaves2
,
iLitCofs
[
1
]
);
Vec_IntPush
(
vLeaves2
,
iLitCofs
[
2
]
);
pIfObj
->
iCopy
=
Kit_TruthToGia
(
pNew
,
(
unsigned
*
)
pTruthCof
,
Vec_IntSize
(
vLeaves2
),
vCover
,
vLeaves2
,
0
);
iTopLit
=
pIfObj
->
iCopy
;
RetValue
=
Kit_TruthToGia
(
pNew
,
(
unsigned
*
)
pTruthCof
,
Vec_IntSize
(
vLeaves2
),
vCover
,
vLeaves2
,
0
);
iTopLit
=
RetValue
;
}
else
{
...
...
@@ -1661,32 +1589,33 @@ Gia_Man_t * Gia_ManFromIfLogic( If_Man_t * pIfMan )
assert
(
Vec_IntSize
(
vLeaves2
)
==
2
);
// consider three possibilities
if
(
iLitCofs
[
0
]
==
0
)
pIfObj
->
iCopy
=
Gia_ManAppendAnd
(
pNew
,
iLitCofs
[
2
],
iLitCofs
[
1
]
);
RetValue
=
Gia_ManAppendAnd
(
pNew
,
iLitCofs
[
2
],
iLitCofs
[
1
]
);
else
if
(
iLitCofs
[
0
]
==
1
)
pIfObj
->
iCopy
=
Gia_ManAppendOr
(
pNew
,
Abc_LitNot
(
iLitCofs
[
2
]),
iLitCofs
[
1
]
);
RetValue
=
Gia_ManAppendOr
(
pNew
,
Abc_LitNot
(
iLitCofs
[
2
]),
iLitCofs
[
1
]
);
else
if
(
iLitCofs
[
1
]
==
0
)
pIfObj
->
iCopy
=
Gia_ManAppendAnd
(
pNew
,
Abc_LitNot
(
iLitCofs
[
2
]),
iLitCofs
[
0
]
);
RetValue
=
Gia_ManAppendAnd
(
pNew
,
Abc_LitNot
(
iLitCofs
[
2
]),
iLitCofs
[
0
]
);
else
if
(
iLitCofs
[
1
]
==
1
)
pIfObj
->
iCopy
=
Gia_ManAppendOr
(
pNew
,
iLitCofs
[
2
],
iLitCofs
[
0
]
);
RetValue
=
Gia_ManAppendOr
(
pNew
,
iLitCofs
[
2
],
iLitCofs
[
0
]
);
else
assert
(
0
);
iTopLit
=
iLitCofs
[
2
];
}
// create mapping
Vec_IntSetEntry
(
vMapping
,
Abc_Lit2Var
(
pIfObj
->
iCopy
),
Vec_IntSize
(
vMapping2
)
);
Vec_IntSetEntry
(
vMapping
,
Abc_Lit2Var
(
RetValue
),
Vec_IntSize
(
vMapping2
)
);
Vec_IntPush
(
vMapping2
,
Vec_IntSize
(
vLeaves2
)
);
Vec_IntForEachEntry
(
vLeaves2
,
iTemp
,
k
)
Vec_IntPush
(
vMapping2
,
Abc_Lit2Var
(
iTemp
)
);
Vec_IntPush
(
vMapping2
,
-
Abc_Lit2Var
(
iTopLit
)
);
pIfObj
->
iCopy
=
Abc_LitNotCond
(
pIfObj
->
iCopy
,
pCutBest
->
fCompl
);
}
else
if
(
pIfMan
->
pPars
->
fUseAndVars
&&
pIfMan
->
pPars
->
fDeriveLuts
&&
(
int
)
pCutBest
->
nLeaves
>
pIfMan
->
pPars
->
nLutSize
/
2
)
{
RetValue
=
Abc_LitNotCond
(
RetValue
,
pCutBest
->
fCompl
);
return
RetValue
;
}
int
Gia_ManFromIfLogicAndVars
(
Gia_Man_t
*
pNew
,
If_Man_t
*
pIfMan
,
If_Cut_t
*
pCutBest
,
Vec_Int_t
*
vLeaves
,
Vec_Int_t
*
vLeaves2
,
Vec_Int_t
*
vCover
,
Vec_Int_t
*
vMapping
,
Vec_Int_t
*
vMapping2
)
{
word
pFunc
[
64
],
uTruth
[
2
];
int
nLeaves
=
pCutBest
->
nLeaves
;
int
truthId
=
Abc_Lit2Var
(
pCutBest
->
iCutFunc
);
int
c
,
Mask
=
Vec_IntEntry
(
pIfMan
->
vTtDecs
[
nLeaves
],
truthId
);
int
c
,
k
,
Mask
=
Vec_IntEntry
(
pIfMan
->
vTtDecs
[
nLeaves
],
truthId
);
int
MaskOne
[
2
]
=
{
Mask
&
0xFFFF
,
(
Mask
>>
16
)
&
0x3FFF
};
int
iLitCofs
[
2
],
iTemp
,
fOrDec
=
(
Mask
>>
30
)
&
1
;
int
iLitCofs
[
2
],
iTemp
,
fOrDec
=
(
Mask
>>
30
)
&
1
,
RetValue
=
-
1
;
assert
(
Mask
>
0
&&
nLeaves
<=
2
*
(
pIfMan
->
pPars
->
nLutSize
/
2
)
&&
pIfMan
->
pPars
->
nLutSize
<=
13
);
Abc_TtCopy
(
pFunc
,
If_CutTruthWR
(
pIfMan
,
pCutBest
),
pIfMan
->
nTruth6Words
[
nLeaves
],
fOrDec
);
Abc_TtDeriveBiDec
(
pFunc
,
nLeaves
,
MaskOne
[
0
],
MaskOne
[
1
],
pIfMan
->
pPars
->
nLutSize
/
2
,
&
uTruth
[
0
],
&
uTruth
[
1
]
);
...
...
@@ -1712,16 +1641,119 @@ Gia_Man_t * Gia_ManFromIfLogic( If_Man_t * pIfMan )
}
iLitCofs
[
0
]
=
Abc_LitNotCond
(
iLitCofs
[
0
],
fOrDec
);
iLitCofs
[
1
]
=
Abc_LitNotCond
(
iLitCofs
[
1
],
fOrDec
);
pIfObj
->
iCopy
=
Gia_ManAppendAnd
(
pNew
,
iLitCofs
[
0
],
iLitCofs
[
1
]
);
pIfObj
->
iCopy
=
Abc_LitNotCond
(
pIfObj
->
iCopy
,
fOrDec
^
Abc_LitIsCompl
(
pCutBest
->
iCutFunc
)
);
RetValue
=
Gia_ManAppendAnd
(
pNew
,
iLitCofs
[
0
],
iLitCofs
[
1
]
);
RetValue
=
Abc_LitNotCond
(
RetValue
,
fOrDec
^
Abc_LitIsCompl
(
pCutBest
->
iCutFunc
)
);
// create mapping
Vec_IntSetEntry
(
vMapping
,
Abc_Lit2Var
(
pIfObj
->
iCopy
),
Vec_IntSize
(
vMapping2
)
);
Vec_IntSetEntry
(
vMapping
,
Abc_Lit2Var
(
RetValue
),
Vec_IntSize
(
vMapping2
)
);
Vec_IntPush
(
vMapping2
,
2
);
Vec_IntPush
(
vMapping2
,
Abc_Lit2Var
(
iLitCofs
[
0
])
);
Vec_IntPush
(
vMapping2
,
Abc_Lit2Var
(
iLitCofs
[
1
])
);
Vec_IntPush
(
vMapping2
,
-
Abc_Lit2Var
(
pIfObj
->
iCopy
)
);
Vec_IntPush
(
vMapping2
,
-
Abc_Lit2Var
(
RetValue
)
);
RetValue
=
Abc_LitNotCond
(
RetValue
,
pCutBest
->
fCompl
);
return
RetValue
;
}
/**Function*************************************************************
Synopsis [Converts IF into GIA manager.]
Description []
SideEffects []
SeeAlso []
***********************************************************************/
Gia_Man_t
*
Gia_ManFromIfLogic
(
If_Man_t
*
pIfMan
)
{
Gia_Man_t
*
pNew
,
*
pHashed
=
NULL
;
If_Cut_t
*
pCutBest
;
If_Obj_t
*
pIfObj
,
*
pIfLeaf
;
Vec_Int_t
*
vMapping
,
*
vMapping2
,
*
vPacking
=
NULL
;
Vec_Int_t
*
vLeaves
,
*
vLeaves2
,
*
vCover
,
*
vLits
;
Vec_Int_t
*
vPiVars
=
NULL
,
*
vPoVars
=
NULL
;
sat_solver
*
pSat
=
NULL
;
Ifn_Ntk_t
*
pNtkCell
=
NULL
;
int
i
,
k
,
nLutMax
=
-
1
,
Entry
;
assert
(
!
pIfMan
->
pPars
->
fDeriveLuts
||
pIfMan
->
pPars
->
fTruth
);
// if ( pIfMan->pPars->fEnableCheck07 )
// pIfMan->pPars->fDeriveLuts = 0;
// start mapping and packing
vMapping
=
Vec_IntStart
(
If_ManObjNum
(
pIfMan
)
);
vMapping2
=
Vec_IntStart
(
1
);
if
(
pIfMan
->
pPars
->
fDeriveLuts
&&
(
pIfMan
->
pPars
->
pLutStruct
||
pIfMan
->
pPars
->
fEnableCheck75
||
pIfMan
->
pPars
->
fEnableCheck75u
||
pIfMan
->
pPars
->
fEnableCheck07
||
pIfMan
->
pPars
->
fUseDsdTune
)
)
{
vPacking
=
Vec_IntAlloc
(
1000
);
Vec_IntPush
(
vPacking
,
0
);
}
// create new manager
pNew
=
Gia_ManStart
(
If_ManObjNum
(
pIfMan
)
);
// iterate through nodes used in the mapping
vLits
=
Vec_IntAlloc
(
1000
);
vCover
=
Vec_IntAlloc
(
1
<<
16
);
vLeaves
=
Vec_IntAlloc
(
16
);
vLeaves2
=
Vec_IntAlloc
(
16
);
If_ManCleanCutData
(
pIfMan
);
If_ManForEachObj
(
pIfMan
,
pIfObj
,
i
)
{
if
(
pIfObj
->
nRefs
==
0
&&
!
If_ObjIsTerm
(
pIfObj
)
)
continue
;
if
(
If_ObjIsAnd
(
pIfObj
)
)
{
pCutBest
=
If_ObjCutBest
(
pIfObj
);
// perform sorting of cut leaves by delay, so that the slowest pin drives the fastest input of the LUT
if
(
!
pIfMan
->
pPars
->
fUseTtPerm
&&
!
pIfMan
->
pPars
->
fDelayOpt
&&
!
pIfMan
->
pPars
->
fDelayOptLut
&&
!
pIfMan
->
pPars
->
fDsdBalance
&&
!
pIfMan
->
pPars
->
pLutStruct
&&
!
pIfMan
->
pPars
->
fUserRecLib
&&
!
pIfMan
->
pPars
->
nGateSize
&&
!
pIfMan
->
pPars
->
fEnableCheck75
&&
!
pIfMan
->
pPars
->
fEnableCheck75u
&&
!
pIfMan
->
pPars
->
fEnableCheck07
&&
!
pIfMan
->
pPars
->
fUseDsdTune
&&
!
pIfMan
->
pPars
->
fUseCofVars
&&
!
pIfMan
->
pPars
->
fUseAndVars
)
If_CutRotatePins
(
pIfMan
,
pCutBest
);
// collect leaves of the best cut
Vec_IntClear
(
vLeaves
);
If_CutForEachLeaf
(
pIfMan
,
pCutBest
,
pIfLeaf
,
k
)
Vec_IntPush
(
vLeaves
,
pIfLeaf
->
iCopy
);
// perform one of the two types of mapping: with and without structures
if
(
pIfMan
->
pPars
->
fUseDsd
&&
pIfMan
->
pPars
->
pLutStruct
)
{
if
(
pSat
==
NULL
)
pSat
=
(
sat_solver
*
)
If_ManSatBuildXY
(
(
int
)(
pIfMan
->
pPars
->
pLutStruct
[
0
]
-
'0'
)
);
if
(
pIfMan
->
pPars
->
pLutStruct
&&
pIfMan
->
pPars
->
fDeriveLuts
)
pIfObj
->
iCopy
=
Gia_ManFromIfLogicFindLut
(
pIfMan
,
pNew
,
pCutBest
,
pSat
,
vLeaves
,
vLits
,
vCover
,
vMapping
,
vMapping2
,
vPacking
);
else
pIfObj
->
iCopy
=
Gia_ManFromIfLogicCreateLut
(
pNew
,
If_CutTruthW
(
pIfMan
,
pCutBest
),
vLeaves
,
vCover
,
vMapping
,
vMapping2
);
pIfObj
->
iCopy
=
Abc_LitNotCond
(
pIfObj
->
iCopy
,
pCutBest
->
fCompl
);
}
else
if
(
pIfMan
->
pPars
->
fUseDsd
&&
pIfMan
->
pPars
->
fUseDsdTune
&&
pIfMan
->
pPars
->
fDeriveLuts
)
{
if
(
pSat
==
NULL
)
{
pSat
=
(
sat_solver
*
)
If_ManSatBuildFromCell
(
If_DsdManGetCellStr
(
pIfMan
->
pIfDsdMan
),
&
vPiVars
,
&
vPoVars
,
&
pNtkCell
);
nLutMax
=
Ifn_NtkLutSizeMax
(
pNtkCell
);
pHashed
=
Gia_ManStart
(
10000
);
Vec_IntFillExtra
(
&
pHashed
->
vCopies
,
10000
,
-
1
);
for
(
k
=
0
;
k
<
pIfMan
->
pPars
->
nLutSize
;
k
++
)
Gia_ManAppendCi
(
pHashed
);
Gia_ManHashAlloc
(
pHashed
);
}
pIfObj
->
iCopy
=
Gia_ManFromIfLogicFindCell
(
pIfMan
,
pNew
,
pHashed
,
pCutBest
,
pSat
,
vPiVars
,
vPoVars
,
pNtkCell
,
nLutMax
,
vLeaves
,
vLits
,
vCover
,
vMapping
,
vMapping2
,
vPacking
);
pIfObj
->
iCopy
=
Abc_LitNotCond
(
pIfObj
->
iCopy
,
pCutBest
->
fCompl
);
}
else
if
(
pIfMan
->
pPars
->
fUseAndVars
&&
pIfMan
->
pPars
->
fUseCofVars
&&
pIfMan
->
pPars
->
fDeriveLuts
&&
(
int
)
pCutBest
->
nLeaves
>
pIfMan
->
pPars
->
nLutSize
/
2
)
{
int
truthId
=
Abc_Lit2Var
(
pCutBest
->
iCutFunc
);
int
Mask
=
Vec_IntEntry
(
pIfMan
->
vTtDecs
[
pCutBest
->
nLeaves
],
truthId
);
if
(
Mask
)
pIfObj
->
iCopy
=
Gia_ManFromIfLogicAndVars
(
pNew
,
pIfMan
,
pCutBest
,
vLeaves
,
vLeaves2
,
vCover
,
vMapping
,
vMapping2
);
else
pIfObj
->
iCopy
=
Gia_ManFromIfLogicCofVars
(
pNew
,
pIfMan
,
pCutBest
,
vLeaves
,
vLeaves2
,
vCover
,
vMapping
,
vMapping2
);
}
else
if
(
pIfMan
->
pPars
->
fUseAndVars
&&
pIfMan
->
pPars
->
fDeriveLuts
&&
(
int
)
pCutBest
->
nLeaves
>
pIfMan
->
pPars
->
nLutSize
/
2
)
{
pIfObj
->
iCopy
=
Gia_ManFromIfLogicAndVars
(
pNew
,
pIfMan
,
pCutBest
,
vLeaves
,
vLeaves2
,
vCover
,
vMapping
,
vMapping2
);
}
else
if
(
pIfMan
->
pPars
->
fUseCofVars
&&
pIfMan
->
pPars
->
fDeriveLuts
&&
(
int
)
pCutBest
->
nLeaves
>
pIfMan
->
pPars
->
nLutSize
/
2
)
{
pIfObj
->
iCopy
=
Gia_ManFromIfLogicCofVars
(
pNew
,
pIfMan
,
pCutBest
,
vLeaves
,
vLeaves2
,
vCover
,
vMapping
,
vMapping2
);
}
else
if
(
(
pIfMan
->
pPars
->
fDeriveLuts
&&
pIfMan
->
pPars
->
fTruth
)
||
pIfMan
->
pPars
->
fUseDsd
||
pIfMan
->
pPars
->
fUseTtPerm
)
{
word
*
pTruth
=
If_CutTruthW
(
pIfMan
,
pCutBest
);
...
...
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