Evolution Lab Advanced 1 minute read Updated 2026-06-26 UTC

Teleodynamic test harness

A test harness design for split, add, merge, retire, and no-op decisions under resource constraints.

Research statusExperiment design guide Publication statePublished Reviewed byMichael Kappel Source reports3

Goal

A teleodynamic harness tests whether structural changes pay for themselves. It is not just an accuracy benchmark. It simulates evidence intake, candidate generation, scoring, budget updates, and rollback.

Structural actions

ActionWhen consideredMain risk
splitone specialist fails on separable subdomainsfragmentation
adda missing capability is proven and affordablebloat
mergetwo specialists overlap stronglyinterference
retirea model is underused or unsafeloss of rare coverage
no-opno action beats thresholdfalse stagnation if evidence is poor
pseudocode
PROCEDURE run_teleodynamic_harness(ecology, workload, policy)
    baseline <- REPLAY_WORKLOAD(ecology, workload)
    proposals <- PROPOSE_STRUCTURAL_ACTIONS(ecology, baseline.failures)

    candidates <- []
    FOR each proposal IN proposals
        IF POLICY_ALLOWS(proposal)
            candidates.ADD(SIMULATE_ACTION(ecology, proposal))
        END IF
    END FOR

    outcomes <- []
    FOR each candidate_ecology IN candidates
        score <- REPLAY_WORKLOAD(candidate_ecology, workload)
        budget <- COMPUTE_RESOURCE_DELTA(candidate_ecology, ecology)
        outcomes.ADD(VIABILITY_SCORE(score, budget, policy))
    END FOR

    best <- SELECT_BEST_OR_NOOP(outcomes, policy.threshold)
    RETURN HARNESS_REPORT(baseline, proposals, outcomes, best)
END PROCEDURE

Harness report

The report should include baseline behavior, proposed actions, rejected proposals, score deltas, resource deltas, threshold values, selected action, no-op rationale if selected, and rollback feasibility.

Test data discipline

Use separate sets for proposal discovery and final selection. If the same failures generate and judge the candidate, the candidate may overfit the failure cluster without improving the broader ecology.

Source reports used for this guide

These reports are preserved verbatim in the site archive. The guide above is an editorial synthesis and may narrow, qualify, or reorganize claims from the source material.