Skip to main content
. Author manuscript; available in PMC: 2013 Dec 1.
Published in final edited form as: Health Care Manag Sci. 2012 Dec;15(4):293–309. doi: 10.1007/s10729-012-9195-x

Algorithm 2.

TournamentSelect()
Output: Selected policy
1 begin
2   KA ← randomly selected policy from entire population of policies;
3   KB ← randomly selected policy from entire population of policies;
4   if J(KA) > J(KB) then
5     return KA;
6   end
7   else
8     return KB;
9   end
10 end