File tree Expand file tree Collapse file tree 6 files changed +15
-16
lines changed
Expand file tree Collapse file tree 6 files changed +15
-16
lines changed Original file line number Diff line number Diff line change @@ -679,11 +679,11 @@ ddUniqueCompareGroup(
679679 int * ptrX ,
680680 int * ptrY )
681681{
682- #if 0
682+ // #if 0
683683 if (entry [* ptrY ] == entry [* ptrX ]) {
684684 return ((* ptrX ) - (* ptrY ));
685685 }
686- #endif
686+ // #endif
687687 return (entry [* ptrY ] - entry [* ptrX ]);
688688
689689} /* end of ddUniqueCompareGroup */
@@ -2170,4 +2170,3 @@ ddIsVarHandled(
21702170
21712171
21722172ABC_NAMESPACE_IMPL_END
2173-
Original file line number Diff line number Diff line change @@ -873,11 +873,11 @@ ddLinearUniqueCompare(
873873 int * ptrX ,
874874 int * ptrY )
875875{
876- #if 0
876+ // #if 0
877877 if (entry [* ptrY ] == entry [* ptrX ]) {
878878 return ((* ptrX ) - (* ptrY ));
879879 }
880- #endif
880+ // #endif
881881 return (entry [* ptrY ] - entry [* ptrX ]);
882882
883883} /* end of ddLinearUniqueCompare */
@@ -1370,4 +1370,3 @@ cuddXorLinear(
13701370
13711371
13721372ABC_NAMESPACE_IMPL_END
1373-
Original file line number Diff line number Diff line change @@ -1325,11 +1325,11 @@ ddUniqueCompare(
13251325 int * ptrX ,
13261326 int * ptrY )
13271327{
1328- #if 0
1328+ // #if 0
13291329 if (entry [* ptrY ] == entry [* ptrX ]) {
13301330 return ((* ptrX ) - (* ptrY ));
13311331 }
1332- #endif
1332+ // #endif
13331333 return (entry [* ptrY ] - entry [* ptrX ]);
13341334
13351335} /* end of ddUniqueCompare */
@@ -2140,4 +2140,3 @@ ddCheckPermuation(
21402140
21412141
21422142ABC_NAMESPACE_IMPL_END
2143-
Original file line number Diff line number Diff line change @@ -609,11 +609,11 @@ ddSymmUniqueCompare(
609609 int * ptrX ,
610610 int * ptrY )
611611{
612- #if 0
612+ // #if 0
613613 if (entry [* ptrY ] == entry [* ptrX ]) {
614614 return ((* ptrX ) - (* ptrY ));
615615 }
616- #endif
616+ // #endif
617617 return (entry [* ptrY ] - entry [* ptrX ]);
618618
619619} /* end of ddSymmUniqueCompare */
@@ -1703,4 +1703,3 @@ ddSymmSummary(
17031703
17041704
17051705ABC_NAMESPACE_IMPL_END
1706-
Original file line number Diff line number Diff line change @@ -610,11 +610,11 @@ zddUniqueCompareGroup(
610610 int * ptrX ,
611611 int * ptrY )
612612{
613- #if 0
613+ // #if 0
614614 if (entry [* ptrY ] == entry [* ptrX ]) {
615615 return ((* ptrX ) - (* ptrY ));
616616 }
617- #endif
617+ // #endif
618618 return (entry [* ptrY ] - entry [* ptrX ]);
619619
620620} /* end of zddUniqueCompareGroup */
@@ -1341,4 +1341,3 @@ zddMergeGroups(
13411341
13421342
13431343ABC_NAMESPACE_IMPL_END
1344-
Original file line number Diff line number Diff line change @@ -460,6 +460,11 @@ cuddZddUniqueCompare(
460460 int * ptr_x ,
461461 int * ptr_y )
462462{
463+ //#if 0
464+ if (zdd_entry [* ptr_y ] == zdd_entry [* ptr_x ]) {
465+ return ((* ptr_x ) - (* ptr_y ));
466+ }
467+ //#endif
463468 return (zdd_entry [* ptr_y ] - zdd_entry [* ptr_x ]);
464469
465470} /* end of cuddZddUniqueCompare */
@@ -1665,4 +1670,3 @@ zddFixTree(
16651670
16661671ABC_NAMESPACE_IMPL_END
16671672
1668-
You can’t perform that action at this time.
0 commit comments