C# 클래스 Blackjack.Players.WizardSimpleStrategy

This class implements the Simple Wizard Strategy described at the WizardOfOdds page: http://wizardofodds.com/blackjack/apx21.html The EV of this strategy at a single-deck game with Vegas Strip rules is -0.67%.
상속: IBlackjackPlayer
파일 보기 프로젝트 열기: tansey/blackjack

공개 메소드들

메소드 설명
BuyInsurance ( HandInfo info ) : bool
DoubleDown ( HandInfo info ) : bool
GetBet ( decimal min, decimal max ) : decimal
HandOver ( HandInfo info ) : void
Hit ( HandInfo info ) : bool
PlayAnotherHand ( ) : bool
Reshuffle ( ) : void
Split ( HandInfo info ) : bool
Surrender ( HandInfo info ) : bool
WizardSimpleStrategy ( long handsToPlay ) : System

메소드 상세

BuyInsurance() 공개 메소드

public BuyInsurance ( HandInfo info ) : bool
info HandInfo
리턴 bool

DoubleDown() 공개 메소드

public DoubleDown ( HandInfo info ) : bool
info HandInfo
리턴 bool

GetBet() 공개 메소드

public GetBet ( decimal min, decimal max ) : decimal
min decimal
max decimal
리턴 decimal

HandOver() 공개 메소드

public HandOver ( HandInfo info ) : void
info HandInfo
리턴 void

Hit() 공개 메소드

public Hit ( HandInfo info ) : bool
info HandInfo
리턴 bool

PlayAnotherHand() 공개 메소드

public PlayAnotherHand ( ) : bool
리턴 bool

Reshuffle() 공개 메소드

public Reshuffle ( ) : void
리턴 void

Split() 공개 메소드

public Split ( HandInfo info ) : bool
info HandInfo
리턴 bool

Surrender() 공개 메소드

public Surrender ( HandInfo info ) : bool
info HandInfo
리턴 bool

WizardSimpleStrategy() 공개 메소드

public WizardSimpleStrategy ( long handsToPlay ) : System
handsToPlay long
리턴 System