Examples of RekVerfahren


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

     */
    public static RekVerfahren getKonstRek(
            final String rekName,
            final ParCollection params,
            final Random rand) {
        RekVerfahren rekombinationsVerfahren = null;

        if (!params.getPlugIDList().contains(new EvolutionPluginCompletelyEvolvable().id())) {
            throw new RuntimeException(
                    "OpsFactory needs the plugin: "
                    + new EvolutionPluginCompletelyEvolvable().id() + ".");
View Full Code Here

Examples of fmg.fmg8.endlAutomat.rekombination.RekVerfahren

     */
    public static RekVerfahren getKonstRek(
            final String rekName,
            final Parametersatz params,
            final Random rand) {
        RekVerfahren rekombinationsVerfahren = null;
       
        if (rekName.equalsIgnoreCase(OpsFactory.REK_TRIVIAL)) {
            rekombinationsVerfahren = new RekTrivial(
                    params.getRekAnzEltern(),
                    params.getRekAnzKinder(),
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.