Merge pull request #89 from maliberty/equiv-no-footprint

Remove the footprint check from equivCells
This commit is contained in:
James Cherry 2024-09-12 17:05:53 -07:00 committed by GitHub
commit 46699727b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 13 deletions

View File

@ -73,8 +73,4 @@ bool
equivCellSequentials(const LibertyCell *cell1,
const LibertyCell *cell2);
bool
equivCellFootprints(const LibertyCell *cell1,
const LibertyCell *cell2);
} // namespace

View File

@ -325,8 +325,7 @@ equivCells(const LibertyCell *cell1,
&& equivCellPgPorts(cell1, cell2)
&& equivCellSequentials(cell1, cell2)
&& equivCellStatetables(cell1, cell2)
&& equivCellTimingArcSets(cell1, cell2)
&& equivCellFootprints(cell1, cell2);
&& equivCellTimingArcSets(cell1, cell2);
}
bool
@ -526,11 +525,4 @@ equivCellTimingArcSets(const LibertyCell *cell1,
}
}
bool
equivCellFootprints(const LibertyCell *cell1,
const LibertyCell *cell2)
{
return stringEqIf(cell1->footprint(), cell2->footprint());
}
} // namespace