diff options
Diffstat (limited to 'common/timing.cc')
-rw-r--r-- | common/timing.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/timing.cc b/common/timing.cc index c9e1cabd..a753708a 100644 --- a/common/timing.cc +++ b/common/timing.cc @@ -161,7 +161,7 @@ void assign_budget(Context *ctx, bool quiet) // If user has not specified a frequency, dynamically adjust the target // frequency to be the current maximum if (!ctx->user_freq) { - ctx->target_freq = 1e12 / (default_slack - 1.2 * min_slack); + ctx->target_freq = 1e12 / (default_slack - min_slack); if (ctx->verbose) log_info("minimum slack for this assign = %d, target Fmax for next update = %.2f MHz\n", min_slack, ctx->target_freq / 1e6); |