Package graphplan.graph.algorithm

Examples of graphplan.graph.algorithm.SolutionExtractionVisitor


   * @throws OperatorFactoryException
   */
  public PlanResult plan(DomainDescription domainDescription) throws PlanningGraphException, OperatorFactoryException {
    PropositionLevel initialLevel = new PropositionLevel();
    initialLevel.addPropositions(domainDescription.getInitialState());
    this.solutionExtraction = new SolutionExtractionVisitor(domainDescription.getGoalState());
   
    /*Closed World Assumption - Simple Implementation by goals*/
//    for(Proposition g: domainDescription.getGoalState()){
//      if(!initialLevel.hasProposition(g)){
//        //Add negative for proposition g
View Full Code Here

TOP

Related Classes of graphplan.graph.algorithm.SolutionExtractionVisitor

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.