This is difficult to put into words. In each iteration of Fictitious Play one player plays his best response to the other's equilibrium response, and then the players change places. The best response strategies are averaged over all time to form the equilibrium response. So if the same cards are played in successive iterations as you describe it's like you have very few iterations so convergence is very slow. CFRM is similar.
Quote:
For real poker would it be OK to iterate in this way?
for mycards = 22,23,... AA
for oppcards = 22,23,... AA
for flop = 222,223,... AAA
I'm 99% sure this would converge slower than a random ordering.
Quote:
The reason I want to do this is to get perfectly weighted representations for each scenario instead of using a PRNG with no guarantees.
I suspect that for a "perfectly weighted representation" you would need the answer before you start. But I think you might be able to bias the sampling to the cards which matter more to the solution. I know no more than that.