Package graphplan.graph.algorithm.impl

Examples of graphplan.graph.algorithm.impl.LevelGeneratorImpl


  public PlanningGraph() {
    this.graphLevels = new ArrayList<GraphLevel>();
    //XXX Right now I'm hard coding the instantiation of the level generators
    //TODO Eventually this should be done through configuration and reflection
    LevelGeneratorImpl levelGenerator = new LevelGeneratorImpl();
    this.actionLevelGenerator = levelGenerator;
    this.propositionLevelGenerator = levelGenerator;
    //And the mutex generator
    this.mutexGenerator = new MutexGeneratorImpl();
    this.propositions = new TreeSet<Proposition>();
View Full Code Here


  }

  public PlanningGraph(PropositionLevel initialState, Map<String, Set<String>> types, Map<String, List<String>> parameterTypes, StaticMutexesTable staticsMutexesTable) {
    this(initialState, staticsMutexesTable);

    LevelGeneratorImpl levelGenerator = new LevelGeneratorImpl(types, parameterTypes);
    this.actionLevelGenerator = levelGenerator;
    this.propositionLevelGenerator = levelGenerator;
  }
View Full Code Here

TOP

Related Classes of graphplan.graph.algorithm.impl.LevelGeneratorImpl

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.