Really do not overconstrain!

This commit is contained in:
Eddie Hung 2018-07-29 18:16:49 -07:00
parent 9ce91f97cc
commit 9c45f762c8

View File

@ -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);