Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/10/17 22:11:10 (6 years ago)
Author:
abeham
Message:

#1614: refactored code

  • change problem to derive from basic problem
  • using a combined instance class instead of individual parameters
Location:
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IQualityAwareGQAPOperator.cs

    r15503 r15504  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2525namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
    2626  public interface IQualityAwareGQAPOperator : IGQAPOperator {
    27     ILookupParameter<BoolValue> MaximizationParameter { get; }
    2827    ILookupParameter<DoubleValue> QualityParameter { get; }
    29     ILookupParameter<DoubleValue> FlowDistanceQualityParameter { get; }
    30     ILookupParameter<DoubleValue> InstallationQualityParameter { get; }
    31     ILookupParameter<DoubleValue> OverbookedCapacityParameter { get; }
     28    ILookupParameter<Evaluation> EvaluationParameter { get; }
    3229  }
    3330}
Note: See TracChangeset for help on using the changeset viewer.