Package pdp.scrabble.ia.impl

Examples of pdp.scrabble.ia.impl.SimpleMoveAccumulator


/**Utility factory class*/
public class AIFactory {

    public static AbstractAlgoStep getAlgo(AILevel level, GameEnvironment env) {
  AbstractAlgoStep algo = new DawgMoveGen(env,(Player) null, (DAWGItf) env.getDictionary(),
    new SimpleMoveAccumulator(null));
  if (level.getNbSimulations()>0)
      algo = new SimpleSimulator(algo, env, null);
  return algo;
    }
View Full Code Here

TOP

Related Classes of pdp.scrabble.ia.impl.SimpleMoveAccumulator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.