Vision Makers LogoVision Makers Docs

Mathematical Expressions & Approach

⚙️ Mathematical Framework

Core Variables

SymbolDefinition
M_targetMarket cap target for the current round.
M_currentReal-time market capitalization (oracle fed).
D_nominalNominal duration (the default round timer).
SpeedFactorAcceleration multiplier.
D_actualEffective duration after speed adjustment.
A_roundBurn allocation for that round (% of total supply).

Dynamic Acceleration Formula

if M_current < M_target:
    SpeedFactor = 0.25
else:
    SpeedFactor = 1 + (M_current / M_target)

D_actual = D_nominal / SpeedFactor