Changeset 15504 for branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter
- Timestamp:
- 12/10/17 22:11:10 (7 years ago)
- Location:
- branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter
- Files:
-
- 1 added
- 7 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IBestKnownQualityAwareGQAPOperator.cs
r15503 r15504 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IBestKnownSolutionAwareGQAPOperator.cs
r15503 r15504 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IBestKnownSolutionsAwareGQAPOperator.cs
r15503 r15504 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IMoveQualityAwareGQAPOperator.cs
r15503 r15504 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 26 26 public interface IMoveQualityAwareGQAPOperator : IGQAPMoveOperator { 27 ILookupParameter<BoolValue> MaximizationParameter { get; }28 27 ILookupParameter<DoubleValue> MoveQualityParameter { get; } 29 ILookupParameter<DoubleValue> MoveFlowDistanceQualityParameter { get; } 30 ILookupParameter<DoubleValue> MoveInstallationQualityParameter { get; } 31 ILookupParameter<DoubleValue> MoveOverbookedCapacityParameter { get; } 28 ILookupParameter<Evaluation> MoveEvaluationParameter { get; } 32 29 } 33 30 } -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IProblemInstanceAwareGQAPOperator.cs
r15503 r15504 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Data;24 23 25 24 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 26 public interface I ExpectedRandomQualityAwareGQAPOperator : IGQAPOperator {27 I ValueLookupParameter<DoubleValue> ExpectedRandomQualityParameter { get; }25 public interface IProblemInstanceAwareGQAPOperator : IGQAPOperator { 26 ILookupParameter<GQAPInstance> ProblemInstanceParameter { get; } 28 27 } 29 28 } -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IQualitiesAwareGQAPOperator.cs
r15503 r15504 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 26 26 public interface IQualitiesAwareGQAPOperator : IGQAPOperator { 27 ILookupParameter<BoolValue> MaximizationParameter { get; }28 27 IScopeTreeLookupParameter<DoubleValue> QualityParameter { get; } 29 IScopeTreeLookupParameter<DoubleValue> FlowDistanceQualityParameter { get; } 30 IScopeTreeLookupParameter<DoubleValue> InstallationQualityParameter { get; } 31 IScopeTreeLookupParameter<DoubleValue> OverbookedCapacityParameter { get; } 28 IScopeTreeLookupParameter<Evaluation> EvaluationParameter { get; } 32 29 } 33 30 } -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IQualityAwareGQAPOperator.cs
r15503 r15504 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 25 25 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 26 26 public interface IQualityAwareGQAPOperator : IGQAPOperator { 27 ILookupParameter<BoolValue> MaximizationParameter { get; }28 27 ILookupParameter<DoubleValue> QualityParameter { get; } 29 ILookupParameter<DoubleValue> FlowDistanceQualityParameter { get; } 30 ILookupParameter<DoubleValue> InstallationQualityParameter { get; } 31 ILookupParameter<DoubleValue> OverbookedCapacityParameter { get; } 28 ILookupParameter<Evaluation> EvaluationParameter { get; } 32 29 } 33 30 }
Note: See TracChangeset
for help on using the changeset viewer.