Exposure Rotation¶
Rotation schedule — instantiates Resensitization Reset
Rotates among several interchangeable inputs so no single one repeats often enough to lose its bite, spreading exposure instead of pausing it.
Most reset mechanisms buy recovery by stopping the input for a while. Exposure Rotation buys it by never letting any one input repeat often enough to be tolerated in the first place — it keeps the function running continuously but cycles through a pool of interchangeable options, so each individual member gets a long rest between uses while the system as a whole never pauses. Its defining move is scheduling over a set: it maintains a record of what has been used and how recently, and applies a rotation rule that pushes recently-used items to the back of the queue, capping how often any single one can recur. This is what separates it from a pause and from a one-time reframe — rotation is a standing policy that pre-empts tolerance rather than a remedy applied after tolerance has set in.
Example¶
An orchard faces a codling-moth population that has grown resistant to its go-to insecticide — spray the same active ingredient one more time and the survivors breed a fully resistant generation. Escalating the dose accelerates the problem. Instead, the grower adopts an Exposure Rotation modeled on published resistance-management guidance, which organizes insecticides by mode of action and advises cycling between unrelated modes rather than repeating one.[1] The rotation rule is concrete: no mode-of-action group may be used in consecutive generations, and each group carries a per-season use ceiling. A simple spray log — the exposure history — records which group was applied when, so the next choice is forced to the back of the queue.
The pest population never gets the sustained selection pressure that breeds resistance to any one chemistry, because no single mode of action is present long enough. Coverage is continuous; the moths are controlled every generation. What rotates is which input does the controlling. The grower did not pause spraying, retest susceptibility, or ramp anything back — those are other moves. Rotation simply refuses to let one input become the tolerated input.
How it works¶
Rotation is a queue discipline over a pool of substitutable inputs:
- Maintain the pool and its history. Enumerate the interchangeable options and log each use with a timestamp, so recency is always known.
- Apply the rotation rule. Select the next input by a policy — round-robin, longest-idle-first, or grouped-by-family — that guarantees separation between repeats of the same item.
- Enforce a per-item ceiling. Cap how often any single member may appear in a window, so a "favorite" can't quietly dominate and re-create tolerance.
- Keep the function live. Unlike a pause, coverage never drops; only the identity of the active input changes on each cycle.
The recovery of any one input happens passively, during the interval it spends waiting in the queue — no separate abstention interval is declared.
Tuning parameters¶
- Pool size — how many interchangeable inputs are in rotation. A larger pool lengthens each item's rest but raises coordination cost and dilutes any single input's mastery.
- Rotation period — how long each input stays active before the next takes over. Longer periods are simpler but shorten the rest each item gets; shorter periods spread exposure thinner.
- Separation rule — the minimum gap enforced before an input may return. Strict separation maximizes recovery; loose separation risks partial tolerance carrying over.
- Per-item ceiling — the cap on any one input's share of total exposure. Tight ceilings protect the weakest-recovering members; loose ceilings let effective favorites do more work.
When it helps, and when it misleads¶
Its strength is that it delivers uninterrupted coverage — no dark window where the function is off — which makes it the right choice when a pause is unsafe or unaffordable and enough genuinely interchangeable inputs exist. It also pre-empts tolerance rather than curing it, so a well-run rotation can run indefinitely without ever hitting the plateau that triggers other resets.
Its failure mode is cosmetic rotation: cycling among inputs that are not actually independent. If the "different" options share the underlying pathway the system tolerates — insecticides that look distinct but hit the same target site, or ad creatives that vary the image but repeat the identical claim — the receiver adapts to the shared element and rotation buys nothing. The classic misuse is a pool too small or too correlated to provide real separation, giving the appearance of variety while the effective exposure barely changes. The guarding discipline is to define the rotation axis by the dimension the system actually habituates to (mode of action, core message, reward contingency) and to verify the pool members are independent on that axis, not merely superficially different.
How it implements the components¶
Exposure Rotation realizes the continuous-variation side of the archetype — the components that spread exposure across a set rather than pausing it:
exposure_history— the use log that records what has run and how recently is the input to every rotation decision.variation_rule— the rotation policy is the variation rule: it specifies how the active input changes from cycle to cycle.exposure_ceiling— the per-item cap that stops any single member from recurring often enough to rebuild tolerance.
It does not implement response_retest (that is Response Retest Assessment), reintroduction_rule (owned by Reintroduction Ramp), or safety_floor — the preserve-critical-signals discipline of its name-twin Alert Suppression and Rotation Workflow; rotation spreads a benign pool, it does not guard a safety-critical one.
Related¶
- Instantiates: Resensitization Reset — rotation is the reset that never stops the function, only cycles its inputs.
- Sibling mechanisms: Reset Period Protocol · Alert Suppression and Rotation Workflow · Novelty Reintroduction · Reward Schedule Refresh · Message Refresh Campaign · Drug Holiday · Reintroduction Ramp · Response Retest Assessment · Deload Week
Editorial Notes¶
Form Classification¶
Form family: Control, Automation & Runtime
Rationale: Exposure Rotation operates as a live operational control that automatically routes, enforces, adapts, or responds during execution because it rotates among several interchangeable inputs so no single one repeats often enough to lose its bite, spreading exposure instead of pausing it.
Independent corroboration: The frozen evidence defines Exposure Rotation as 'Rotates among several interchangeable inputs so no single one repeats often enough to lose its bite, spreading exposure instead of pausing it', so its operative form is Control, Automation & Runtime.
Nearest alternative: Protocol, Workflow & Routine — Pool history, recency policy, and per-item ceilings execute as a runtime scheduler rather than merely a rotation procedure.
Review outcome: Independent reviewer agreement; medium confidence.
Origin Attribution¶
Primary origin: Agricultural Science & Agronomy
Origin pattern: Convergent development
Present-day reach: Multi-domain
Rationale: Agricultural resistance management formalized rotating inputs across distinct modes of action so repeated exposure does not select rapid tolerance or resistance.
Related originating lineages:
- Pharmacology & Toxicology — Drug-class rotation and antimicrobial-resistance management independently shaped cycling among pharmacologically distinct inputs.
- Psychology — Alternating stimuli to prevent habituation and restore response is rooted in psychological learning and sensory adaptation research.
Review resolution: IRAC explicitly prescribes alternation or rotation across different modes of action and rejects cosmetic rotation within one group. Pharmacology and psychology show convergent tolerance patterns.
Encyclopedia synthesis: The exact catalogued form synthesizes established practice rather than reproducing a single standard historical label.
Review outcome: Researched adjudication after independent review; high confidence.
Sources consulted:
Notes¶
Rotation and its nearest sibling Novelty Reintroduction both fight tolerance with variety, but they are opposites in structure: rotation cycles among many distinct inputs so each rests, whereas novelty keeps the same single input and changes its surface form on return. Reach for rotation when you have a real pool of substitutes; reach for novelty when the input is singular and only its packaging can change.
References¶
[1] The Insecticide Resistance Action Committee (IRAC) and its fungicide counterpart FRAC publish mode-of-action classifications precisely so growers can rotate among unrelated chemistries rather than repeat one — the operational definition of rotation that pre-empts tolerance. It is also the source of the cosmetic-rotation warning: two products in the same mode-of-action group do not count as a rotation. withdrawn registry ↩