Examples of erzeugeAusSequenz()


Examples of eas.simulation.spatial.sim2D.marbSimulation.RobEA.erzeugeAusSequenz()

            for (RobEA r : akteure) {
                umg.removeAgent(r);
            }
            for (int i = 0; i < anzGute; i++) {
                RobEA rGut = new RobEA(i, umg, params, this.random);
                rGut.erzeugeAusSequenz(0, seqGut[0], null, false);
                rGut.setVerhCodes(StaticMethods.listSeqAusStrings(seqGut));

                umg.hinzuRobotRand(rGut);
            }
            for (int i = anzGute; i < anzGute + anzSchlechte; i++) {
View Full Code Here

Examples of eas.simulation.spatial.sim2D.marbSimulation.RobEA.erzeugeAusSequenz()

                umg.hinzuRobotRand(rGut);
            }
            for (int i = anzGute; i < anzGute + anzSchlechte; i++) {
                RobEA rSchlecht = new RobEA(i, umg, params, this.random);
                rSchlecht.erzeugeAusSequenz(0, seqSchlecht[0], null, false);
                rSchlecht.setVerhCodes(StaticMethods.listSeqAusStrings(seqSchlecht));
               
                umg.hinzuRobotRand(rSchlecht);
            }
        }
View Full Code Here

Examples of eas.simulation.spatial.sim2D.marbSimulation.RobEA.erzeugeAusSequenz()

                bestPopNum = Math.max(0, bestPopNum - 1);
               
                for (int i = 0; i < aufn.getPop(0).getRobSchnapp().length; i++) {
                    RobSnapshot robSchnapp = aufn.getPop(bestPopNum).getRobSchnapp()[i];
                    RobEA rob = new RobEA(i, env, params, env.getRand());
                    rob.erzeugeAusSequenz(0, robSchnapp.getVStdCodes()[0], null, false);
                    env.hinzuRobotRand(rob);
                   
                    // Speichere einen beliebigen (hoffentlich representativen) Roboterautomaten.
                    if (i == 0) {
                        StaticMethods.saveAutPNG(
View Full Code Here

Examples of eas.simulation.spatial.sim2D.marbSimulation.RobEA.erzeugeAusSequenz()

                bestPopNum = Math.max(0, bestPopNum - 1);
               
                for (int i = 0; i < aufn.getPop(0).getRobSchnapp().length; i++) {
                    RobSnapshot robSchnapp = aufn.getPop(bestPopNum).getRobSchnapp()[i];
                    RobEA rob = new RobEA(i, env, params, env.getRand());
                    rob.erzeugeAusSequenz(0, robSchnapp.getVStdCodes()[0], null, false);
                    env.hinzuRobotRand(rob);
                   
                    // Speichere einen beliebigen (hoffentlich representativen) Roboterautomaten.
                    if (i == 0) {
                        rob.speichereAuts(storedRuns[filesFinished].getName() + "_simTrajTime_" + simZyk.getLastTick() + "_simOriginalTime_" + aufn.getPop(bestPopNum).getId());
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.