Package eu.planets_project.pp.plato.bean

Examples of eu.planets_project.pp.plato.bean.ExperimentStatus


    public void run(Object alt) {
        if (! (alt instanceof Alternative)) {
            return;
        }
        if (experimentStatus == null)  {
         experimentStatus = new ExperimentStatus();
        }
        experimentStatus.experimentSetup(Arrays.asList((Alternative)alt), selectedPlan.getSampleRecordsDefinition().getRecords());
    }
View Full Code Here


     * Runs experiments of all considered alternatives.
     *
     */
    public void runAllExperiments(){
        if (experimentStatus == null)  {
            experimentStatus = new ExperimentStatus();
           }
        experimentStatus.experimentSetup(consideredAlternatives, selectedPlan.getSampleRecordsDefinition().getRecords());
    }
View Full Code Here

    /**
     * runs all experiments scheduled in experimentStatus
     */
    public void startExperiments() {
        if (experimentStatus == null)  {
            experimentStatus = new ExperimentStatus();
           }
        Alternative alt = experimentStatus.getNextAlternative();
        while ((alt != null)&&(! experimentStatus.isCanceled())) {
            runSingle(alt);
            alt = experimentStatus.getNextAlternative();
View Full Code Here

    public void runAllExperiments() {
       
        leaves.clear();
       
        if (experimentStatus == null) {
            experimentStatus = new ExperimentStatus();
        }
        experimentStatus.experimentSetup(selectedPlan
                .getAlternativesDefinition().getAlternatives(), selectedPlan
                .getSampleRecordsDefinition().getRecords());
    }
View Full Code Here

TOP

Related Classes of eu.planets_project.pp.plato.bean.ExperimentStatus

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.