mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-05-30 00:24:12 +08:00
Merge pull request #89 from maliberty/equiv-no-footprint
Remove the footprint check from equivCells
This commit is contained in:
@@ -73,8 +73,4 @@ bool
|
||||
equivCellSequentials(const LibertyCell *cell1,
|
||||
const LibertyCell *cell2);
|
||||
|
||||
bool
|
||||
equivCellFootprints(const LibertyCell *cell1,
|
||||
const LibertyCell *cell2);
|
||||
|
||||
} // namespace
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user