mirror of https://github.com/YosysHQ/abc.git
Addressing platform-dependent computations in the CUDD package.
This commit is contained in:
parent
6f5c46632d
commit
b319f57dde
|
|
@ -679,11 +679,11 @@ ddUniqueCompareGroup(
|
|||
int * ptrX,
|
||||
int * ptrY)
|
||||
{
|
||||
#if 0
|
||||
//#if 0
|
||||
if (entry[*ptrY] == entry[*ptrX]) {
|
||||
return((*ptrX) - (*ptrY));
|
||||
}
|
||||
#endif
|
||||
//#endif
|
||||
return(entry[*ptrY] - entry[*ptrX]);
|
||||
|
||||
} /* end of ddUniqueCompareGroup */
|
||||
|
|
@ -2170,4 +2170,3 @@ ddIsVarHandled(
|
|||
|
||||
|
||||
ABC_NAMESPACE_IMPL_END
|
||||
|
||||
|
|
|
|||
|
|
@ -873,11 +873,11 @@ ddLinearUniqueCompare(
|
|||
int * ptrX,
|
||||
int * ptrY)
|
||||
{
|
||||
#if 0
|
||||
//#if 0
|
||||
if (entry[*ptrY] == entry[*ptrX]) {
|
||||
return((*ptrX) - (*ptrY));
|
||||
}
|
||||
#endif
|
||||
//#endif
|
||||
return(entry[*ptrY] - entry[*ptrX]);
|
||||
|
||||
} /* end of ddLinearUniqueCompare */
|
||||
|
|
@ -1370,4 +1370,3 @@ cuddXorLinear(
|
|||
|
||||
|
||||
ABC_NAMESPACE_IMPL_END
|
||||
|
||||
|
|
|
|||
|
|
@ -1325,11 +1325,11 @@ ddUniqueCompare(
|
|||
int * ptrX,
|
||||
int * ptrY)
|
||||
{
|
||||
#if 0
|
||||
//#if 0
|
||||
if (entry[*ptrY] == entry[*ptrX]) {
|
||||
return((*ptrX) - (*ptrY));
|
||||
}
|
||||
#endif
|
||||
//#endif
|
||||
return(entry[*ptrY] - entry[*ptrX]);
|
||||
|
||||
} /* end of ddUniqueCompare */
|
||||
|
|
@ -2140,4 +2140,3 @@ ddCheckPermuation(
|
|||
|
||||
|
||||
ABC_NAMESPACE_IMPL_END
|
||||
|
||||
|
|
|
|||
|
|
@ -609,11 +609,11 @@ ddSymmUniqueCompare(
|
|||
int * ptrX,
|
||||
int * ptrY)
|
||||
{
|
||||
#if 0
|
||||
//#if 0
|
||||
if (entry[*ptrY] == entry[*ptrX]) {
|
||||
return((*ptrX) - (*ptrY));
|
||||
}
|
||||
#endif
|
||||
//#endif
|
||||
return(entry[*ptrY] - entry[*ptrX]);
|
||||
|
||||
} /* end of ddSymmUniqueCompare */
|
||||
|
|
@ -1703,4 +1703,3 @@ ddSymmSummary(
|
|||
|
||||
|
||||
ABC_NAMESPACE_IMPL_END
|
||||
|
||||
|
|
|
|||
|
|
@ -610,11 +610,11 @@ zddUniqueCompareGroup(
|
|||
int * ptrX,
|
||||
int * ptrY)
|
||||
{
|
||||
#if 0
|
||||
//#if 0
|
||||
if (entry[*ptrY] == entry[*ptrX]) {
|
||||
return((*ptrX) - (*ptrY));
|
||||
}
|
||||
#endif
|
||||
//#endif
|
||||
return(entry[*ptrY] - entry[*ptrX]);
|
||||
|
||||
} /* end of zddUniqueCompareGroup */
|
||||
|
|
@ -1341,4 +1341,3 @@ zddMergeGroups(
|
|||
|
||||
|
||||
ABC_NAMESPACE_IMPL_END
|
||||
|
||||
|
|
|
|||
|
|
@ -460,6 +460,11 @@ cuddZddUniqueCompare(
|
|||
int * ptr_x,
|
||||
int * ptr_y)
|
||||
{
|
||||
//#if 0
|
||||
if (zdd_entry[*ptr_y] == zdd_entry[*ptr_x]) {
|
||||
return((*ptr_x) - (*ptr_y));
|
||||
}
|
||||
//#endif
|
||||
return(zdd_entry[*ptr_y] - zdd_entry[*ptr_x]);
|
||||
|
||||
} /* end of cuddZddUniqueCompare */
|
||||
|
|
@ -1665,4 +1670,3 @@ zddFixTree(
|
|||
|
||||
ABC_NAMESPACE_IMPL_END
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue