Skip to content

lion24/roulette

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

roulette

A basic european roulette simulation in C.

Test different strategies base on different bets and initial balance.

Roulette is an EV- game, so you cannot beat the house, the only way to win is to stole coin when dealer is not looking (Einstein)

Personne ne peut gagner à la roulette à moins qu’il ne vole l’argent de la table lorsque le croupier ne regarde pas.

-- Albert Einstein

Compile

make

Have fun

➜  roulette git:(main) ✗ ./roulette
result: 20
Bet size: 21.00
Payout: 36.00
net win: 15.00
amount: 1015.00
result: 22
Bet size: 21.00
Payout: 0.00
amount: 994.00
result: 32
Bet size: 21.00
Payout: 14.00
net win: -7.00
amount: 987.00
result: 23
Bet size: 21.00
Payout: 28.00
net win: 7.00
amount: 994.00
result: 22
Bet size: 21.00
Payout: 0.00
amount: 973.00
result: 12
Bet size: 21.00
Payout: 14.00
net win: -7.00
amount: 966.00

RNG

Thanks to skeeto, he found an issue with the number generator with attempt at rejection sampling and proposed a fixed I implemented. Number seems now more uniformly distributed as you can see: roulette-distribution-histogram

I'm aware this is a toy RNG and the purpose is not to replicate a true RNG which can be quiet hard without dedicated hardware.

About

A basic roulette simulation in C

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published