Package org.jamesii.core.distributed.partitioner.partitioning

Examples of org.jamesii.core.distributed.partitioner.partitioning.AbstractExecutablePartition


  public SimpleSimulationAlgorithmSetup(IModel model) {
    super("Select preferred Simulation Algorithm: ", false);

    // determine the processor factories for the model
    ParameterBlock block =
        new ParameterBlock(new AbstractExecutablePartition(model, null, null),
            AbstractProcessorFactory.PARTITION);

    try {
      factories =
          SimSystem.getRegistry().getFactoryList(
View Full Code Here


   */
  public static SelectionTreeSet createSelectionTreeSet(
      ParameterBlock rwSimCfgParams, URI modelLocation,
      Map<String, ?> modelParameters) throws ClassNotFoundException {
    ParameterBlock treeSetParams = new ParameterBlock(
        new AbstractExecutablePartition(instantiateModel(rwSimCfgParams,
            modelLocation, modelParameters), null, null),
        AbstractProcessorFactory.PARTITION);
    return new SelectionTreeSet(AbstractProcessorFactory.class, treeSetParams);
  }
View Full Code Here

  @Override
  public void setUp() throws Exception {
    super.setUp();
    paramBlock = new ParameterBlock();
    paramBlock.addSubBl(AbstractProcessorFactory.PARTITION,
        new AbstractExecutablePartition(new BogusModel(
            new HashMap<String, Serializable>()), null, null));
    treeSet = new SelectionTreeSet(AbstractProcessorFactory.class, paramBlock);
  }
View Full Code Here

TOP

Related Classes of org.jamesii.core.distributed.partitioner.partitioning.AbstractExecutablePartition

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.