Package fmg.fmg8.endlAutomat.script

Examples of fmg.fmg8.endlAutomat.script.Script


                            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

       
        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);
View Full Code Here

                    return;
                }
            }
        }

        Script neuScript = trans2.translate(seq2);
        trans2.getScriptInterpreter().generateAutomaton(this, neuScript);

/* TODO: Langfristig weglassen, dient nur Testzwecken:
        Translator konstTrTR
            = fmg.fmg8.endlAutomat.translator.Konstanten.STD_TRANSL_TR;
View Full Code Here

     * Erzeugt einen Automaten aus einem �bergebenen Script.
     *
     * @param script  Das Script, aus dem der Automat erzeugt werden soll.
     */
    public void erzeugeAusScript(final String script) {
        this.scriptInterpreter.generateAutomaton(this, new Script(script));
        this.sequenz = null;
    }
View Full Code Here

                    + ", Token "
                    + this.getAktToken()
                    + " / "
                    + this.getLookAheadToken()
                    + ": "
                    + new Script(inst),
                this.pars);
       
        // Folgezustand festlegen, Code-Zeiger verschieben.
        bedingungen = info.getBeds();
        this.aktZustand = -1;
View Full Code Here

            if (aktion != null) {
                strScr += aktion + ";";
            }
        }
       
        return new Script(strScr);
    }
View Full Code Here

                    return;
                }
            }
        }

        Script neuScript = trans2.translate(seq2);
        trans2.getScriptInterpreter().generateAutomaton(this, neuScript);

/* TODO: Langfristig weglassen, dient nur Testzwecken:
        Translator konstTrTR
            = fmg.fmg8.endlAutomat.translator.Konstanten.STD_TRANSL_TR;
View Full Code Here

     * Erzeugt einen Automaten aus einem �bergebenen Script.
     *
     * @param script  Das Script, aus dem der Automat erzeugt werden soll.
     */
    public void erzeugeAusScript(final String script) {
        this.scriptInterpreter.generateAutomaton(this, new Script(script));
        this.sequenz = null;
    }
View Full Code Here

TOP

Related Classes of fmg.fmg8.endlAutomat.script.Script

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.