Uses of Class
com.anji.tournament.ScoringWeights

Packages that use ScoringWeights
com.anji.gomoku com.anji.gomoku contains classes to handle Go-Moku (see Gamerz.net for rules). 
com.anji.roshambo com.anji.roshambo contains classes to implement the game of roshambo, also commonly known as rock-scissors-paper. 
com.anji.tournament com.anji.tournament contains classes to handle tournaments and games. 
com.anji.ttt com.anji.ttt contains classes to handle Tic-Tac-Toe (see Yahooligans for rules). 
 

Uses of ScoringWeights in com.anji.gomoku
 

Methods in com.anji.gomoku with parameters of type ScoringWeights
 int GomokuGame.getMaxScore(ScoringWeights aWeights)
           
 int GomokuGame.getMinScore(ScoringWeights aWeights)
           
 

Uses of ScoringWeights in com.anji.roshambo
 

Methods in com.anji.roshambo with parameters of type ScoringWeights
 int RoshamboGame.getMaxScore(ScoringWeights aWeights)
           
 int RoshamboGame.getMinScore(ScoringWeights aWeights)
           
 

Uses of ScoringWeights in com.anji.tournament
 

Methods in com.anji.tournament that return ScoringWeights
protected  ScoringWeights SimpleTournament.getScoringWeights()
           
 

Methods in com.anji.tournament with parameters of type ScoringWeights
 int IteratedGame.getMaxScore(ScoringWeights aWeights)
           
 int IteratedGame.getMinScore(ScoringWeights aWeights)
           
 int Game.getMaxScore(ScoringWeights weights)
           
 int Game.getMinScore(ScoringWeights weights)
           
 

Constructors in com.anji.tournament with parameters of type ScoringWeights
SingleEliminationTournament(Game aGame, ScoringWeights aWeights, java.util.Random aRand)
          ctor Note: this object overrides aMatch countOpponentResults to true
SimpleTournament(Game aGame, ScoringWeights aWeights)
           
PlayerResults(Player aPlayer, ScoringWeights aWeights)
          ctor
KRandomOppsTournament(Game aGame, int aK, ScoringWeights aWeights, java.util.Random aRand)
          Note: this object overrides aMatch countOpponentResults to false
DoubleEliminationTournament(Game aGame, ScoringWeights aWeights, java.util.Random aRand)
          ctor Note: this object overrides aMatch countOpponentResults to true
DirectTournament(Game aGame, ScoringWeights aWeights, java.util.Random aRand)
           
 

Uses of ScoringWeights in com.anji.ttt
 

Methods in com.anji.ttt with parameters of type ScoringWeights
 int TttGame.getMaxScore(ScoringWeights aWeights)
           
 int TttGame.getMinScore(ScoringWeights aWeights)