Expand description
Threshold-sweep API: compute acceptance trajectories for one argument across the full budget range.
Under Dunne 2011 semantics, acceptance can change at any distinct
subset-sum of attack weights (up to 2^|attacks| values). The
sweep probes all such breakpoints to guarantee no flip is missed.
§Monotonicity
Under Dunne 2011 semantics, credulous acceptance is monotone
non-decreasing in β: if x is credulously accepted at some β, it
is credulously accepted at every larger budget. min_budget_for_credulous
is therefore well-defined and returns the infimum.
Structs§
- Sweep
Point - One point in a threshold sweep: the budget at which this point applies, and whether the target is accepted at that budget.
Enums§
- Acceptance
Mode - Which acceptance notion to use for the sweep.
Functions§
- acceptance_
trajectory - Compute the full acceptance trajectory for
targetacross the framework’s budget range, returning oneSweepPointat every breakpoint. - flip_
points - Return only the budgets at which
target’s acceptance changes as β increases. Useful for the drama-manager flip-point query. - min_
budget_ for_ credulous - Return the smallest budget at which
targetis credulously accepted, orNoneif it is never accepted across the framework’s full budget range.