Package eas.simulation.spatial.sim2D.marbSimulation.mutation

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


    public static CondMutVerfahren getKonstMut(
            final String mutName,
            final Random rand,
            final ParCollection params) {   
        MutSeqVerf mutSeq;
        CondMutVerfahren condMut = null;
       
        if (!params.getPlugIDList().contains(new EvolutionPluginCompletelyEvolvable().id())
                &&  !params.getPlugIDList().contains(new EvolutionPluginCascadingTranslators().id())) {
            throw new RuntimeException(
                    "OpsFactory needs the plugin: "
View Full Code Here


//                            break;
//                        }
//                    }
//                }

                CondMutVerfahren mutVerh = null;
                CondMutVerfahren mutTrans = null;
                if (umg.existsPlugin(new EvolutionPluginCompletelyEvolvable().id())) {
                    mutVerh = OpsFactory.getKonstMut(
                            this.pars.getParValueString(EvolutionPluginCompletelyEvolvable.MUT_ART_VE),
                            this.rand,
                            this.pars);
View Full Code Here

TOP

Related Classes of eas.simulation.spatial.sim2D.marbSimulation.mutation.CondMutVerfahren

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.