Examples of MutexGeneratorImpl


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

Examples of graphplan.graph.algorithm.impl.MutexGeneratorImpl

    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
Copyright © 2018 www.massapi.com. 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.