Examples of OptimisationAlgConfig


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
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.