Examples of RekTrivial


Examples of eas.simulation.spatial.sim2D.marbSimulation.rekombination.RekTrivial

                    "OpsFactory needs the plugin: "
                    + new EvolutionPluginCompletelyEvolvable().id() + ".");
        }

        if (rekName.equalsIgnoreCase(
                new RekTrivial(0, 0, false, 0, rand).id())) {
            rekombinationsVerfahren = new RekTrivial(
                    params.getParValueInt(EvolutionPluginCompletelyEvolvable.REK_ELT),
                    1, // konstant 1 Kind.
                    false, // Konstant nicht normiert.
                    Integer.MAX_VALUE,
                    rand);
View Full Code Here

Examples of eas.simulation.spatial.sim2D.marbSimulation.rekombination.RekTrivial

                this.id().toUpperCase()));

        liste.add(new SingleParameter(
                EvolutionPluginCompletelyEvolvable.REK_VERFAHREN_AT,
                Datatypes.STRING,
                new RekTrivial(0, 0, false, 0, null).id(),
                "Verfahren der Rekombination (siehe Klasse OpsFactory).",
                this.id().toUpperCase()));

        liste.add(new SingleParameter(
                EvolutionPluginCompletelyEvolvable.REK_ZYK_ATTR,
View Full Code Here

Examples of fmg.fmg8.endlAutomat.rekombination.RekTrivial

        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

Examples of fmg.fmg8.endlAutomat.rekombination.RekTrivial

        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

Examples of fmg.fmg8.endlAutomat.rekombination.RekTrivial

            final Parametersatz params,
            final Random rand) {
        RekVerfahren rekombinationsVerfahren = null;
       
        if (rekName.equalsIgnoreCase(OpsFactory.REK_TRIVIAL)) {
            rekombinationsVerfahren = new RekTrivial(
                    params.getRekAnzEltern(),
                    params.getRekAnzKinder(),
                    params.getRekNormiert(),
                    params.getRekMaxPopSize(),
                    rand);
View Full Code Here

Examples of fmg.fmg8.endlAutomat.rekombination.RekTrivial

        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(),
                this.pars.getRekAnzKinder(),
                this.pars.getRekNormiert(),
                this.pars.getRekMaxPopSize(),
                this.rand);
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.