Examples of performSelection()


Examples of com.heatonresearch.aifh.evolutionary.opp.selection.TournamentSelection.performSelection()

        for (int roundCount = 1; roundCount <= 10; roundCount++) {
            TournamentSelection selection = new TournamentSelection(train, roundCount);
            int sum = 0;
            int count = 0;
            for (int i = 0; i < 100000; i++) {
                int genomeID = selection.performSelection(rnd, species);
                Genome genome = species.getMembers().get(genomeID);
                sum += genome.getAdjustedScore();
                count++;
            }
            sum /= count;
View Full Code Here

Examples of org.pentaho.reporting.designer.core.editor.parameters.SubReportDataSourceDialog.performSelection()

      else
      {
        subreportDataSourceDialog = new SubReportDataSourceDialog();
      }

      final String queryName = subreportDataSourceDialog.performSelection(designerContext);
      if (queryName != null)
      {
        subReport.setQuery(queryName);
      }
View Full Code Here

Examples of org.pentaho.reporting.designer.core.editor.parameters.SubReportDataSourceDialog.performSelection()

      {
        crosstabDataSourceDialog = new SubReportDataSourceDialog();
      }

      // User has prompted to select a data-source.  Get the selected query
      final String queryName = crosstabDataSourceDialog.performSelection(designerContext);
      if (queryName != null)
      {
        subReport.setQuery(queryName);

        // Invoke Crosstab dialog
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.