Uses of Class
com.anji.integration.TranscriberException

Packages that use TranscriberException
com.anji.gomoku com.anji.gomoku contains classes to handle Go-Moku (see Gamerz.net for rules). 
com.anji.imaging com.anji.imaging contains utility classes to handle image processing. 
com.anji.integration com.anji.integration contains classes that provide the glue between the various components of the system, including artificial neural net implementations, JGAP, NEAT, Log4J, and persistence and presentation layers. 
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 TranscriberException in com.anji.gomoku
 

Methods in com.anji.gomoku that throw TranscriberException
 java.lang.Object GomokuPlayerTranscriber.transcribe(Chromosome c)
           
 Player GomokuPlayerTranscriber.newPlayer(Chromosome c)
           
 BoardPlayer GomokuPlayerTranscriber.newBoardPlayer(Chromosome c)
           
 

Uses of TranscriberException in com.anji.imaging
 

Methods in com.anji.imaging that throw TranscriberException
 int IdentifyImageFitnessFunction.evaluate(Chromosome c)
          Returns int between 0 and MAX_FITNESS relative to # images ANN (transcribed from c) is able to identify correctly.
 int IdentifyImageFitnessFunction.evaluateEnsemble(java.util.Collection ensemble)
          Returns int between 0 and MAX_FITNESS relative to # images ANNs (transcribed from ensemble) are able to identify correctly.
 

Uses of TranscriberException in com.anji.integration
 

Methods in com.anji.integration that throw TranscriberException
 java.lang.Object Transcriber.transcribe(Chromosome c)
          Sub-classes must implement this method to convert the genotype to a phenotype.
 java.lang.Object AnjiNetTranscriber.transcribe(Chromosome genotype)
           
 AnjiNet AnjiNetTranscriber.newAnjiNet(Chromosome genotype)
          create new AnjiNet from genotype
 Activator ActivatorTranscriber.newActivator(Chromosome ch)
          Constructs Activator phenotype from Chromosome genotype.
 java.lang.Object ActivatorTranscriber.transcribe(Chromosome c)
           
 

Uses of TranscriberException in com.anji.roshambo
 

Methods in com.anji.roshambo that throw TranscriberException
 RoshamboPlayer RoshamboPlayerTranscriber.newRoshamboPlayer(Chromosome genotype)
          convenience method to return specific type
 Player RoshamboPlayerTranscriber.newPlayer(Chromosome genotype)
           
 java.lang.Object RoshamboPlayerTranscriber.transcribe(Chromosome genotype)
           
 

Uses of TranscriberException in com.anji.tournament
 

Methods in com.anji.tournament that throw TranscriberException
 Player PlayerTranscriber.newPlayer(Chromosome c)
           
 

Uses of TranscriberException in com.anji.ttt
 

Methods in com.anji.ttt that throw TranscriberException
 java.lang.Object TttPlayerTranscriber.transcribe(Chromosome c)
           
 Player TttPlayerTranscriber.newPlayer(Chromosome c)
           
 BoardPlayer TttPlayerTranscriber.newBoardPlayer(Chromosome c)