Find the best tactics of the game against other tactics, for example, in the card game Toepen

I want to test some card game tactics against each other, my goal is to know that witch tactics will be better in real life. I did a simulation for this, but I donโ€™t know if I did a good one. So I would like to know how to create a good simulation.

You cannot imitate every factor that is pressed in real life, such as bluffing. There are also some factors that can be eliminated; I have eliminated as many as possible. Factors that remain like a bluff go beyond. It is impossible to imitate.

I use my modeling project to compare some tactics against each other. Thus, you can see which tactics you can use against other tactics. The disadvantage of this is that you can only use it if you know the tactics of another player. When you donโ€™t know what tactics you can use against it, you need to have a computer to test it. Thus, you can use this project only to view the style of the game.

This question is not about creating โ€œgodโ€ tactics, but about writing good simulation software that can be used to simulate, for example, card games. So I would like to know how you can make a good simulation:

  • What should I take with me?
  • How could you know that your simulation is a good simulation?
  • How do I handle situations? Create, for example, random hands or try all the possibilities.
+5
source share
4 answers

Answers to three questions:

  • Factors like cards sticking together and various shuffling methods should not matter much. I assume that you will model the shuffle using a pseudo-random noise source (e.g. rand ()) to randomize the order of the cards. Most shuffling methods are probably good enough that this is a good enough model for your purposes.

  • , , . , , , , . , , , , , . , , , , , , .

  • , 100%, -- , , , . , , , , . , , , , , , , .

+4

. , , , A , B, , .

, , .

+2

, .

:

, , , , . , .

, , . , , . , , , . . , , , , , , . "" . . () . , .

, . , % ? - ?

, , . . , .

. , . , , .

. . . , , . " ", . , .

+1

:

?

?

, .

; - , , . , , , , .

, . . , ; , - . , , , .

, , , . , , , . , , . , . , , , .

In order to test your simulator and ensure its accuracy in real life, I would advise the computer to stop all known combinations / results and ensure that the results are the same as what you see in real life. After that, start moving with the flow, but slowly increase testing, first run a few strategies and check the results, then add a few more. If you put all the strategies from the very beginning, it will be very difficult for you to find out that one of them is working incorrectly.

0
source

All Articles