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

Examples of eas.simulation.spatial.sim2D.marbSimulation.translator.script.ScriptInterpreter


     * werden damit Verhaltensautomaten generiert.
     */
    public static Translator getStdTranslatorBE(final ParCollection params) {
        return new Translator(
                ConstantsTranslatorWOC.STD_TRANS_STR,
                new ScriptInterpreter(
                        params,
                        ScriptInterpreter.MODUS_VERHALTEN),
                params);
    }
View Full Code Here


     * werden damit Translatorautomaten generiert.
     */
    public static Translator getStdTranslatorTR(final ParCollection params) {
        return new Translator(
                ConstantsTranslatorWOC.STD_TRANS_STR,
                new ScriptInterpreter(params, ScriptInterpreter.MODUS_TRANSLATOR),
                params);
    }
View Full Code Here

                    trStr = ConstantsTranslatorWOC.STD_TRANS_STR;
                }
               
                this.translatoren[i] = new Translator(
                      trStr,
                      new ScriptInterpreter(
                              this.getPars(),
                              ScriptInterpreter.MODUS_VERHALTEN),
                      this.getPars());
            }
            this.transCodes[i] = this.translatoren[i].generateSequence();
View Full Code Here

                    trStr = ConstantsTranslatorWOC.STD_TRANS_STR;
                }
               
                trans2[i] = new Translator(
                        trStr,
                        new ScriptInterpreter(
                                this.getPars(),
                                StaticMethods.MODUS_TRANSLATOR),
                        this.getPars());
            }
            this.erzTransAusSeq(i, seqs[i], trans2[i], pruefen);
View Full Code Here

//            trans.setModus(SonstMeth.MODUS_TRANSLATOR);
//        }
       
        this.translatoren[transNum] = new Translator(
                "",
                new ScriptInterpreter(
                        this.getPars(),
                        ScriptInterpreter.MODUS_VERHALTEN),
                this.getPars());
       
        this.translatoren[transNum].generateFromSequence(seq, trans, pruefen, this.getPars());
View Full Code Here

                umg,
                robcode.getId(),
                params,
                rand,
                false,
                new ScriptInterpreter(params, StaticMethods.MODUS_VERHALTEN),
                transs,
                StaticMethods.convertPluginsToStdPluginsForEA(params.getPlugins(), params));
       
        return rob;
    }
View Full Code Here

                for (int i = 0; i < a.getPops().size(); i++) {
                    for (int j = 0; j < 1; j++) {
                        Translator trans = new Translator(a.getPops().get(i)
                                .getRobSchnapp()[j].getTStdCodes()[0],
                                new ScriptInterpreter(params,
                                        ScriptInterpreter.MODUS_VERHALTEN),
                                params);
                        tempList = m.measureManyTimes(trans, times);
                    }
                    StaticMethods.logInfo("Lauf " + statnum + ", Population "
View Full Code Here

     * werden damit Verhaltensautomaten generiert.
     */
    public static Translator getStdTranslatorBE(final ParCollection params) {
        return new Translator(
                ConstantsTranslator.STD_TRANS_STR,
                new ScriptInterpreter(
                        params,
                        ScriptInterpreter.MODUS_VERHALTEN),
                        params);
    }
View Full Code Here

     * werden damit Verhaltensautomaten generiert.
     */
    public static Translator getStdTranslatorTR(final ParCollection params) {
        return new Translator(
                ConstantsTranslator.STD_TRANS_STR,
                new ScriptInterpreter(params, ScriptInterpreter.MODUS_TRANSLATOR),
                params);
    }
View Full Code Here

                                                        .getTStdCodes()[0]));
                                ArrayList<Integer> newSeq = StaticMethods
                                        .convertTransFromFMGWithoutCompletingTransitionsToAequivalentNew(oldSeq);
                                Translator trans = new Translator(
                                        StaticMethods.stringAusListSeq(newSeq),
                                        new ScriptInterpreter(
                                                params,
                                                ScriptInterpreter.MODUS_VERHALTEN),
                                        params);

                                tempList = m.measureManyTimes(trans, times);
View Full Code Here

TOP

Related Classes of eas.simulation.spatial.sim2D.marbSimulation.translator.script.ScriptInterpreter

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.