aboutsummaryrefslogtreecommitdiffstats
path: root/common/placer1.cc
diff options
context:
space:
mode:
Diffstat (limited to 'common/placer1.cc')
-rw-r--r--common/placer1.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/placer1.cc b/common/placer1.cc
index a8ddd8a6..89e4f919 100644
--- a/common/placer1.cc
+++ b/common/placer1.cc
@@ -1131,12 +1131,12 @@ class SAPlacer
Placer1Cfg cfg;
};
-Placer1Cfg::Placer1Cfg(Context *ctx) : Settings(ctx)
+Placer1Cfg::Placer1Cfg(Context *ctx)
{
- constraintWeight = get<float>("placer1/constraintWeight", 10);
- minBelsForGridPick = get<int>("placer1/minBelsForGridPick", 64);
- budgetBased = get<bool>("placer1/budgetBased", false);
- startTemp = get<float>("placer1/startTemp", 1);
+ constraintWeight = ctx->setting<float>("placer1/constraintWeight", 10);
+ minBelsForGridPick = ctx->setting<int>("placer1/minBelsForGridPick", 64);
+ budgetBased = ctx->setting<bool>("placer1/budgetBased", false);
+ startTemp = ctx->setting<float>("placer1/startTemp", 1);
timingFanoutThresh = std::numeric_limits<int>::max();
}