Package eas.simulation.spatial.sim2D.marbSimulation.translator

Examples of eas.simulation.spatial.sim2D.marbSimulation.translator.Translator.generateFromSequence()


        // Konstanter Translator-Level.
        if (level >= this.levelAnzahl - 1) {
            throw new RuntimeException("Translator vom Level " + level + " ist konstant und kann nicht mutiert bzw. neu übersetzt werden.");
        } else if (level > 0) { // (Mutierbarer oder unmutierbarer) Translator-Level.
            this.setAutomat(robID, trans, level);
            trans.generateFromSequence(StaticMethods.stringAusListSeq(this.getGenom(robID, level)), (Translator) this.getAutomat(robID, level + 1), false, params);
            this.setAutomat(robID, trans, level);
           
            params.logStage1(this.id().toUpperCase() + " -- Roboter " + robID
                    + " / Level " + level + " (StdSeq übersetzt: \""
                    + this.getAutomat(robID, level).erzeugeStringSeq() + "\")");
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.