Package uk.ac.soton.itinnovation.pes.optimiser.core

Examples of uk.ac.soton.itinnovation.pes.optimiser.core.OptimisationManager


        optAlg = setUpOptAlg(args[optAlgIdx]);
        appModel = setUpAppModel(args[modelIdx], daoFactory);
        objFunc = setUpObjFunc(args[objFuncIdx], appModel, priceCalculator, estimationResult, daoFactory, args[workspaceIdx], aslaParams);

        //--- Creating and initialising the Optimiser ---//
        opt = new OptimisationManager();
        valid = opt.init(optimisationSpace, optAlg, objFunc, priceCalculator, args[workspaceIdx], estimationResult, daoFactory);
        if (!valid)
            throw new RuntimeException("ERROR: Optimiser could not be initialised");

        //--- Disabling caching to allow this to execute stand-alone ---//
View Full Code Here

TOP

Related Classes of uk.ac.soton.itinnovation.pes.optimiser.core.OptimisationManager

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.