Skip to content

Commit eea9049

Browse files
committed
gpl: remove PB prefix
Signed-off-by: Augusto Berndt <[email protected]>
1 parent 6d70480 commit eea9049

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/gpl/src/nesterovBase.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,15 +255,15 @@ bool GCell::isLargeInstance() const
255255
if (!isInstance()) {
256256
return false;
257257
}
258-
return insts_[0]->isPbLargeInstance();
258+
return insts_[0]->isLargeInstance();
259259
}
260260

261261
bool GCell::isStdInstance() const
262262
{
263263
if (!isInstance()) {
264264
return false;
265265
}
266-
return !insts_[0]->isPbLargeInstance();
266+
return !insts_[0]->isLargeInstance();
267267
}
268268

269269
void GCell::print(utl::Logger* logger, bool print_only_name = true) const
@@ -3987,7 +3987,7 @@ static int64_t getOverlapAreaBiNormal(const Bin* bin,
39873987
return 0;
39883988
}
39893989

3990-
if (inst->isPbLargeInstance()) {
3990+
if (inst->isLargeInstance()) {
39913991
const float meanX = (inst->cx() - inst->lx()) / (float) dbu_per_micron;
39923992
const float meanY = (inst->cy() - inst->ly()) / (float) dbu_per_micron;
39933993

src/gpl/src/placerBase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ void Instance::setExtId(int extId)
246246
extId_ = extId;
247247
}
248248

249-
bool Instance::isPbLargeInstance() const
249+
bool Instance::isLargeInstance() const
250250
{
251251
return is_large_instance_;
252252
}

src/gpl/src/placerBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class Instance
6161

6262
bool isPlaceInstance() const;
6363

64-
bool isPbLargeInstance() const;
64+
bool isLargeInstance() const;
6565

6666
// A placeable instance may be fixed during part of incremental placement.
6767
// It remains in the set of placeable objects though so as to simplify

0 commit comments

Comments
 (0)