fabulous: Further tweak magic numbers

Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
gatecat 2023-02-16 15:53:15 +01:00
parent 2275ff78e2
commit 16bcc51ffb

View File

@ -69,9 +69,9 @@ struct FabulousImpl : ViaductAPI
blk_trk = std::make_unique<BlockTracker>(ctx, cfg); blk_trk = std::make_unique<BlockTracker>(ctx, cfg);
is_new_fab ? init_bels_v2() : init_bels_v1(); is_new_fab ? init_bels_v2() : init_bels_v1();
init_pips(); init_pips();
ctx->setDelayScaling(2.0, 5.0); ctx->setDelayScaling(3.0, 3.0);
ctx->delay_epsilon = 0.5; ctx->delay_epsilon = 0.25;
ctx->ripup_penalty = 1.5; ctx->ripup_penalty = 0.5;
} }
void update_cell_timing(Context *ctx) void update_cell_timing(Context *ctx)