Package eas.simulation.spatial.sim2D.marbSimulation.statistik

Examples of eas.simulation.spatial.sim2D.marbSimulation.statistik.MeasureTranslatorGenerality


        for (int level = 1; level < this.levelAnzahl() - 1; level++) {
            String chartName = chartNamePrefix + level;
           
            this.chartNames.add(chartName);
           
            MeasureTranslatorGenerality measure = new MeasureTranslatorGenerality(this.measureMut, 99, 100, 100, rand, params);
           
            for (RobEA rob : env.getAgents()) {
                List<Integer> werte = measure.measureManyTimes(this.getAutomat(rob.id(), level, env), 3);
                double sum = 0;
               
                // Durchschnitt berechnen.
                for (double d : werte) {
                    sum += d;
View Full Code Here

TOP

Related Classes of eas.simulation.spatial.sim2D.marbSimulation.statistik.MeasureTranslatorGenerality

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.