Class DPTables

java.lang.Object
cz.matfyz.rudad.joker.evaluator.DPTables

class DPTables extends Object
Contains DP tables used in the hand evaluator. Source: dptables.c
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    (package private) static final int[][][]
    DP table for computing the quinary hash of a hand.
    (package private) static final byte[]
    Hash table for checking if and which suit is flush.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • DP

      static final int[][][] DP
      DP table for computing the quinary hash of a hand. Source: dptables.c
    • SUITS

      static final byte[] SUITS
      Hash table for checking if and which suit is flush. Source: dptables.c
  • Constructor Details

    • DPTables

      DPTables()