Examples of MutationSEQ


Examples of eas.simulation.spatial.sim2D.marbSimulation.mutation.MutationSEQ

                        params.getParValueDouble(EvolutionPluginCompletelyEvolvable.SEQ_LEN_KON_VE),
                        rand);
            } else {
                mutSeq = OpsFactory.mutKlWkeit;
            }
            condMut = new MutationSEQ(mutSeq, true, false);
        }
        if (mutName.equalsIgnoreCase(OpsFactory.MUT_SEQ_TRANS1)) {
            if (OpsFactory.mutKlWkeit == null) {
                mutSeq = new MutKlWkeit(
                        new EinzelMutAdd(
                                rand,
                                params.getParValueDouble(EvolutionPluginCompletelyEvolvable.MUT_TR_STDABW)),
                        params.getParValueDouble(EvolutionPluginCompletelyEvolvable.MUT_TR_WKEIT),
                        params.getParValueDouble(EvolutionPluginCompletelyEvolvable.MIN_FAK_TR),
                        params.getParValueDouble(EvolutionPluginCompletelyEvolvable.MAX_FAK_TR),
                        params.getParValueDouble(EvolutionPluginCompletelyEvolvable.SEQ_LEN_KON_TR),
                        rand);
            } else {
                mutSeq = OpsFactory.mutKlWkeit;
            }
           
            condMut = new MutationSEQ(mutSeq, false, true);
        }
        if (mutName.equalsIgnoreCase(new MutArt1VT(rand, 5, 0, null).id())) {
            condMut = new MutArt1VT(
                    rand,
                    5,
View Full Code Here

Examples of fmg.fmg8.endlAutomat.mutation.MutationSEQ

                        this.pars.getMutSeqLenKonstTrans(),
                        this.rand);

                visRob = new VisMantel(grNam,
                        this.umgebung,
                        new MutationSEQ(mutSeqVerh, true, false),
                        new MutationSEQ(mutSeqTrans, false, true),
                        this.rand,
                        this.kleinsteFreieID(),
                        this.pars,
                        sel,
                        obs);
View Full Code Here

Examples of fmg.fmg8.endlAutomat.mutation.MutationSEQ

                    params.getMutVerhWkeit(),
                    params.getMutMinFaktorVerh(),
                    params.getMutMaxFaktorVerh(),
                    params.getMutSeqLenKonstVerh(),
                    rand);
            condMut = new MutationSEQ(mutSeq, true, false);
        }
        if (mutName.equalsIgnoreCase(OpsFactory.MUT_SEQ_TRANS1)) {
            mutSeq = new MutationKlWkeit(
                    new EinzelMutAdd(rand, params.getMutTransStdAbw()),
                    params.getMutTransWkeit(),
                    params.getMutMinFaktorTrans(),
                    params.getMutMaxFaktorTrans(),
                    params.getMutSeqLenKonstTrans(),
                    rand);
            condMut = new MutationSEQ(mutSeq, false, true);
        }
        if (mutName.equalsIgnoreCase(OpsFactory.MUT_ALT)) {
            condMut = new MutArt1VT(
                    rand,
                    5,
View Full Code Here

Examples of fmg.fmg8.endlAutomat.mutation.MutationSEQ

                this.pars.getMutMinFaktorTrans(),
                this.pars.getMutMaxFaktorTrans(),
                this.pars.getMutSeqLenKonstTrans(),
                this.rand);
       
        this.mutArtVerh = new MutationSEQ(mutSeqVerh, true, false);
        this.mutArtTrans = new MutationSEQ(mutSeqTrans, false, true);
       
        this.autAnz = fmg.fmg8.umgebung2D.Konstanten.ANZAHL_AN_AUTOMATEN;
       
        this.rekombArt = new RekTrivial(
                this.pars.getRekAnzEltern(),
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.