Exemplo n.º 1
0
        public PatternMatcher(PatternValue value)
        {
            _value = value;

            _fullStraightComparer = new FullStraightComparer(value);
            _fullComparer         = new FullComparer(value);
            _halfStraightComparer = new HalfStraightComparer(value);
            _halfComparer         = new HalfComparer(value);
        }
Exemplo n.º 2
0
 public PokerAI(PatternMatcher matcher, PatternValue value)
 {
     _matcher = matcher;
     _value   = value;
 }