Package eas.simulation.spatial.sim2D.marbSimulation.fitness

Examples of eas.simulation.spatial.sim2D.marbSimulation.fitness.FitnessVerfahren


     *
     * @return  Das konstante Fitnessverfahren.
     */
    public static FitnessVerfahren getKonstFit(
            final String fitName) {
        FitnessVerfahren fitnessVerfahren = null;

        if (fitName.equalsIgnoreCase(new FitnessWallFollow().id())) {
            fitnessVerfahren = new FitnessWallFollow();
        }
        if (fitName.equalsIgnoreCase(new FitnessGatePass().id())) {
View Full Code Here

TOP

Related Classes of eas.simulation.spatial.sim2D.marbSimulation.fitness.FitnessVerfahren

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.