Package graphplan.graph.algorithm.impl

Examples of graphplan.graph.algorithm.impl.MutexGeneratorImpl


    //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>();
    this.operators = new TreeSet<Operator>();
  }
View Full Code Here


    this.addGraphLevel(initialState);
  }
 
  public PlanningGraph(PropositionLevel initialState, StaticMutexesTable staticsMutexesTable) {
    this();
    this.mutexGenerator = new MutexGeneratorImpl(staticsMutexesTable);
    this.addGraphLevel(initialState);
    this.setIndexForPropositions(initialState);
  }
View Full Code Here

TOP

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

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.