Uses of Interface
org.eclipse.palamedes.gdl.core.simulation.IStrategy

Packages that use IStrategy
org.eclipse.palamedes.gdl.connection   
org.eclipse.palamedes.gdl.core.simulation   
org.eclipse.palamedes.gdl.core.simulation.strategies   
 

Uses of IStrategy in org.eclipse.palamedes.gdl.connection
 

Methods in org.eclipse.palamedes.gdl.connection with parameters of type IStrategy
 Player.RealMatch Player.createRealMatch(java.lang.String matchId, IGame game, IStrategy strategy, java.lang.String role, int start, int play)
           
 

Constructors in org.eclipse.palamedes.gdl.connection with parameters of type IStrategy
Player.RealMatch(java.lang.String matchId, IGame game, IStrategy strategy, java.lang.String role, int start, int play)
           
 

Uses of IStrategy in org.eclipse.palamedes.gdl.core.simulation
 

Methods in org.eclipse.palamedes.gdl.core.simulation that return IStrategy
 IStrategy StrategyFactory.createStrategy(AbstractFactory.FactoryDescription description)
           
 IStrategy StrategyFactory.createStrategy(int index)
           
 IStrategy StrategyFactory.createStrategy(java.lang.String name)
           
 IStrategy[] SimulationSettings.getStrategies()
           
 IStrategy Match.getStrategy()
           
 

Methods in org.eclipse.palamedes.gdl.core.simulation with parameters of type IStrategy
 void SimulationSettings.setStrategies(IStrategy[] strategies)
           
 

Constructors in org.eclipse.palamedes.gdl.core.simulation with parameters of type IStrategy
Match(IGame game, IStrategy strategy, java.lang.String role, int tStart, int tPlay)
           
Match(IGame game, IStrategy strategy, java.lang.String role, int tStart, int tPlay, IGameNode startNode)
           
SimulationSettings(IStrategy[] strategies, int[] startTimes, int[] playTimes)
           
 

Uses of IStrategy in org.eclipse.palamedes.gdl.core.simulation.strategies
 

Classes in org.eclipse.palamedes.gdl.core.simulation.strategies that implement IStrategy
 class AbstractStrategy
           
 class SDFS
           
 class SMonteCarlo
           
 class SMonteCarloUCT
           
 class SRandom