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

OptStrategy() public method

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

            card_counter = new CardCounter(pp_multiplier);
        }