Package eas.plugins.standard.eaPlugin.evolvableTranslators

Examples of eas.plugins.standard.eaPlugin.evolvableTranslators.EvolutionPluginCompletelyEvolvable


        if (evol) {
            String[] plugs = new String[this.pars.getPlugIDArray().length + 1];
            int i = 0;
            for (i = 0; i < this.pars.getPlugIDArray().length; i++) {
                plugs[i] = this.pars.getPlugIDArray()[i];
                if (plugs[i].equals(new EvolutionPluginCompletelyEvolvable().id())) {
                    existiert = true;
                    break;
                }
            }
            if (!existiert) {
                plugs[plugs.length - 1] = new EvolutionPluginCompletelyEvolvable().id();
                this.pars.setPlugins(plugs);
            }
        }

        // Videoaufnahme-Plugin.
View Full Code Here


     */
    @Override
    public List<String> getRequiredPlugins() {
        LinkedList<String> list = new LinkedList<String>();
        list.add(new EAPlugin().id());
        list.add(new EvolutionPluginCompletelyEvolvable().id());
        return list;
    }
View Full Code Here

//                    }
//                }

                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);
                    mutTrans = OpsFactory.getKonstMut(
View Full Code Here

TOP

Related Classes of eas.plugins.standard.eaPlugin.evolvableTranslators.EvolutionPluginCompletelyEvolvable

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.