Package org.jamesii.simspex.exploration.simple

Examples of org.jamesii.simspex.exploration.simple.SimpleSimSpaceExplorer


      return;
    }

    // TODO add dialog for steerer selection and configuration
    ISimSpaceExplorer explorer =
        new SimpleSimSpaceExplorer(configWindow.getSelectionTreeSet());

    // TODO this should be editable via the GUI
    Set<BaseVariable<?>> expModelVars = explorer.getModelVariables();
    expModelVars.add(new IntVariable("numOfReactants", 5, 1, 10, 2));
    expModelVars.add(new IntVariable("numOfSpecies", 5, 1, 10, 2));
    expModelVars.add(new IntVariable("ReactPerSpecies", 2, 1, 5, 1));

    // Check whether the experiment is already set up with some other variables
View Full Code Here


   *          the selection tree set
   * @return the configured simple sim-space explorer
   */
  protected SimpleSimSpaceExplorer configureSimSpaceExplorer(
      SelectionTreeSet selectionTreeSet) {
    SimpleSimSpaceExplorer explorer =
        simSpExFactory.create(new ParameterBlock(selectionTreeSet,
            SimpleSimSpaceExplorerFactory.SELECTION_TREE_SET), SimSystem.getRegistry().createContext());
    explorer.setNumOfReplications(replications);
    explorer.setMaxModelSpaceElems(sampleSize);
    return explorer;
  }
View Full Code Here

TOP

Related Classes of org.jamesii.simspex.exploration.simple.SimpleSimSpaceExplorer

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.