gnh1201 / lotto_genetic_algorithm

Lotto prediction with Genetic Algorithm and Mersenne Twister (MT19937)

Home Page:https://catswords.social/@catswords_oss

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Comparison: BOGO vs. MT19937 vs. Modulus

gnh1201 opened this issue · comments

Key Characteristics

  • BOGO: Brute-Forcing between 1 and 45 (6 dementions)
  • MT19937 (Mersenne Twister): Seeding the formula x*a + n*b + c (3 dementions)
  • MT19937 (Mersenne Twister) with Feedback: Seeding the formula x*a + n*b + c*d + e (4 dementions)
  • Modulus: Modulizing the formula x*a + n*b + c (3 dementions)

Who is the winner?

  • The highest number of wins: MT19937 (Mersenne Twister) with Feedback
  • The highest speed: Modulus (But, It makes regular numbers by 3)
  • The exact real-life: BOGO