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

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


   * @return An array of doubles, corresponding to fitness values for each objective.
   */
    @Override
  public double[] evaluate (Map <String, Set<Resource>> resources) throws Exception
  {
    ObjectiveFunctionExecutionResult cachedResult = null;
    double[] tmp = null;
    ModelExecutionResult modelExecRes = null;
    Double reliability, infrastructureCost, customerCost;
    Set<AttributeType> outputs = null;

View Full Code Here


   * @return An ObjectiveFunctionExecutionResult instance.
   */
    @Override
    public ObjectiveFunctionExecutionResult getExecutionResult(Map<String, Set<Resource>> resources, String outputDir) throws Exception
    {
        ObjectiveFunctionExecutionResult objFuncRes = null;
    ModelExecutionResult modelExecRes = null;
    Double reliability, infrastructureCost, customerCost;
    Set<AttributeType> outputs = null;

        // check execution cache
View Full Code Here

TOP

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

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.