Package ca.ualberta.cs.poker.free.client

This package contains the code that is specifically associated with the client.

See:
          Description

Class Summary
AdvancedPokerClient An extension of PokerClient that contains a reference to a reproduction of what is happening on the server side (state).
ClientPokerDynamics Maintains a version of the server's state on the client side.
PokerClient Root for all example Java implementations of the client interface.
RandomPokerClient Plays actions uniformly at random.
TablePokerClient Stores a map from abstract states (betting histories + abstract cards) to probability triples (fold,call,raise).
 

Package ca.ualberta.cs.poker.free.client Description

This package contains the code that is specifically associated with the client. In particular, the PokerClient class is the root of all java clients implemented here. The AdvancedPokerClient class is a client that contains a ClientPokerDynamics object that parses incoming messages about the state.