Skip to content

konzak/SpecialKEval

 
 

Repository files navigation

SpecialKEval

SpecialKEval is a lightweight 32-bit Texas Hold'em 5- and 7-card hand evaluator written in C++.

Example

#include <iostream>
#include "SevenEval.h"

int main() {
  SevenEval const* eval = new SevenEval();
  // Get the rank of the seven-card spade flush, ace high.
  std::cout << eval->GetRank(0, 4, 8, 12, 16, 20, 24) << std::endl;
  delete eval;
  return 0;
}

About

7-card Texas Hold'em hand evaluator

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 86.7%
  • C 13.3%