Package uk.ac.soton.itinnovation.pes.data.model

Examples of uk.ac.soton.itinnovation.pes.data.model.OptimisationAlgConfig


   * @param xmlFile XML configuration file specified as a command line argument.
   * @return optimisation algorithm instance.
   */
    private IOptimisationAlgorithm setUpOptAlg(String xmlFile) throws Exception
    {
        OptimisationAlgConfig optAlgConfig = null;
        IOptimisationAlgorithm optAlg = null;

        System.out.println("[TestFramework] Loading optimisation algorithm from XML file");
        optAlgConfig = optUtil.loadOptAlg(xmlFile);
        optAlg = classLoader.getOptimisationAlgorithmInstance(optAlgConfig.getAlgClassName());

    System.out.println();
        return optAlg;
    }
View Full Code Here

TOP

Related Classes of uk.ac.soton.itinnovation.pes.data.model.OptimisationAlgConfig

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.