Log
Batch Results
Symbol Explanation
x: current solution (decoded integer)
bits: binary encoding of x (length = bitLength)
f: objective value f(x)
best: best-so-far objective value
Δ: f(neighbor) − f(current) (SA step shows it)
T: temperature (SA only; cooled by T ← α·T)
p: acceptance probability exp(Δ/T) (Δ<0)
r: random draw in [0,1] (accept if r < p)
tabu: forbidden recent states (TS memory)