GR.Gambling.Blackjack.SuperOptStrategy.SuperOptStrategy C# (CSharp) Method

SuperOptStrategy() public method

public SuperOptStrategy ( int max_bet, double ev_cutoff, double pp_multiplier ) : System
max_bet int
ev_cutoff double
pp_multiplier double
return System
        public SuperOptStrategy(int max_bet, double ev_cutoff, double pp_multiplier)
        {
            this.ev_cutoff = ev_cutoff;
            this.max_bet = max_bet;
            this.pp_multiplier = pp_multiplier;

            cardCounter = new CardCounter(pp_multiplier);
        }