Package fmg.fmg8.endlAutomat.script

Examples of fmg.fmg8.endlAutomat.script.ScriptInterpreter


                            break;
                        }
                    }
                }
               
                MutSeqVerf mutSeqVerh = new MutationKlWkeit(
                        new EinzelMutAdd(
                                this.rand,
                                this.pars.getMutVerhStdAbw()),
                        this.pars.getMutVerhWkeit(),
                        this.pars.getMutMinFaktorVerh(),
                        this.pars.getMutMaxFaktorVerh(),
                        this.pars.getMutSeqLenKonstVerh(),
                        this.rand);
                MutSeqVerf mutSeqTrans = new MutationKlWkeit(
                        new EinzelMutAdd(
                                this.rand,
                                this.pars.getMutTransStdAbw()),
                        this.pars.getMutTransWkeit(),
                        this.pars.getMutMinFaktorTrans(),
View Full Code Here


        this.visObserver = visObs;

        this.aufnahme = new Aufnahme(this.pars);
        this.schnappZyklen = this.pars.getSchnInt().longValue();
        this.rand = new Random(this.pars.getSeed().longValue());
        this.rekombArt = new RekTrivial(
                this.pars.getRekAnzEltern(),
                this.pars.getRekAnzKinder(),
                this.pars.getRekNormiert(),
                this.pars.getRekMaxPopSize(),
                this.rand);
View Full Code Here

        this.visObserver = visObs;

        this.aufnahme = new Aufnahme(this.pars);
        this.schnappZyklen = this.pars.getSchnInt().longValue();
        this.rand = new Random(this.pars.getSeed().longValue());
        this.rekombArt = new RekTrivial(
                this.pars.getRekAnzEltern(),
                this.pars.getRekAnzKinder(),
                this.pars.getRekNormiert(),
                this.pars.getRekMaxPopSize(),
                this.rand);
View Full Code Here

            this.besteTrans[i] = null;
            this.besteTransCodes[i] = null;
            if (this.translatoren[i] == null) {
                this.translatoren[i] = new Translator(
                      fmg.fmg8.endlAutomat.translator.Konstanten.STD_TRANS_STR,
                      new ScriptInterpreter(
                              this.getPars(),
                              ScriptInterpreter.MODUS_VERHALTEN),
                      this.getPars());
            }
            this.transCodes[i] = this.translatoren[i].erzeugeSequenz();
View Full Code Here

            if (trans2[i] != null) {
                trans2[i].setModus(SonstMeth.MODUS_TRANSLATOR);
            }
            this.translatoren[i] = new Translator(
                    "",
                    new ScriptInterpreter(
                            this.getPars(),
                            ScriptInterpreter.MODUS_VERHALTEN),
                    this.getPars());
            this.translatoren[i].erzeugeAusSequenz(seqs[i], trans2[i], pruefen);
           
View Full Code Here

                    ident,
                    this.pars,
                    randm,
                    this.isVisible(),
                    null,
                    new ScriptInterpreter(
                            this.pars,
                            ScriptInterpreter.MODUS_VERHALTEN),
                    autAnz,
                    trans);
            this.robName = grName;
View Full Code Here

            this.besteStdVerh[i] = null;
           
            if (this.translatoren[i] == null) {
                this.translatoren[i] = new Translator(
                      fmg.fmg8.endlAutomat.translator.Konstanten.STD_TRANS_STR,
                      new ScriptInterpreter(
                              this.getPars(),
                              ScriptInterpreter.MODUS_VERHALTEN),
                      this.getPars());
            }
            this.transCodes[i] = this.translatoren[i].erzeugeSequenz();
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].erzeugeAusSequenz(seq, trans, pruefen);
View Full Code Here

        "000, 007, 000, 000, 003, 001, 000, 012, 099, 001, 000, 004, " +
        "000, 000, 005, 001, 000, 000, 000";
       
        Translator trans = new Translator(
                transCode,
                new ScriptInterpreter(params, SonstMeth.MODUS_TRANSLATOR),
                params);
        Script s = trans.translate(new EndlicherAutomat().bereinige(seqCode));
        ScriptInterpreter sInt = new ScriptInterpreter(params, SonstMeth.MODUS_TRANSLATOR);
        EndlicherAutomat ea = new EndlicherAutomat();
        sInt.generateAutomaton(ea, s);
//        System.out.println(ea.erzeugeSequenz().size());
        System.exit(0);

        LinkedList<Integer> seq = ea.erzeugeSequenz();
        System.out.println();
View Full Code Here

       
        for (int i = 0; i < robs.length; i++) {
            for (int j = 0; j < trans.length; j++) {
                trans[j] = new Translator(
                        robs[i].getTStdCodes()[j],
                        new ScriptInterpreter(
                                this.aktParams,
                                SonstMeth.MODUS_TRANSLATOR),
                        this.aktParams);
            }
           
View Full Code Here

TOP

Related Classes of fmg.fmg8.endlAutomat.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.