Interface DecayResult

Result of a decay cycle, reporting how many mutations were weakened and how many were pruned (deleted) for falling below the threshold.

interface DecayResult {
    decayed: number;
    pruned: number;
}

Properties

Properties

decayed: number

Number of mutations whose strength was reduced but still above threshold.

pruned: number

Number of mutations deleted for falling at or below the 0.1 threshold.