Package eas.simulation.spatial.sim2D.marbSimulation.endlAutomat

Examples of eas.simulation.spatial.sim2D.marbSimulation.endlAutomat.EndlicherAutomat.generateFromSequence()


     */
    public void aging() {
        List<Integer> vCode = getVerhCodes()[this.getAktAutNum()];
        String seq = StaticMethods.stringAusListSeq(vCode);
        EndlicherAutomat ea = new EndlicherAutomat();
        ea.generateFromSequence(seq, getTranslatoren()[this.getAktAutNum()], false, this.getPars());
        double prob =  this.getPars().getParValueDouble("reachProb");
        for (Integer nodeId: ea.getAdjazenzliste().keySet()) {
            Knoten node = ea.getAdjazenzliste().get(nodeId);
            if (ea.erreichbarVonStart(node.holeName(), prob)) {
                if (!node.getInfo().istStartZ()) {
View Full Code Here


           
            this.translationFuerRoboterAbLevel(robID, level - 1, params);
        } else { // Verhaltenslevel.
            ea = new EndlicherAutomat();
            this.setAutomat(robID, ea, level);
            ea.generateFromSequence(
                    StaticMethods.stringAusListSeq(this.getGenom(robID, level)),
                    (Translator) this.getAutomat(robID, level + 1), false, params);
            this.setAutomat(robID, ea, level);
           
            params.logStage1(this.id().toUpperCase() + " -- Roboter " + robID
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.