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

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


         */
       
        int[] fits = new int[1];
        String[] codes = new String[1];
        fits[0] = (int) fitness;
        codes[0] = kind.erzeugeStringSeq();
       
        robC[0] = new RobCode(
                id,
                fits,
                codes,
View Full Code Here


       
        // Erzeuge initialen Automaten.
        Script initialScript = automaton.translate(EndlicherAutomat.bereinigeStatic(StaticMethods.ListToString(this.initialGenotype)));
        EndlicherAutomat initialEA = new EndlicherAutomat();
        automaton.getScriptInterpreter().generateAutomaton(initialEA, initialScript);
        String initialString = initialEA.erzeugeStringSeq();
       
        // Instantiiere Testautomaten.
        Script testScript;
        EndlicherAutomat testEA = new EndlicherAutomat();
        String testString;
View Full Code Here

            }
           
            // Erzeuge Testautomaten.
            testScript = automaton.translate(EndlicherAutomat.bereinigeStatic(StaticMethods.ListToString(this.genotype)));
            automaton.getScriptInterpreter().generateAutomaton(testEA, testScript);
            testString = testEA.erzeugeStringSeq();
            if (!testString.equals(initialString)) {
                if (k + 1 > this.maxValue) {
                    maxValue = k + 1;
                }
               
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.