Changeset 16712 for branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter
- Timestamp:
- 03/25/19 17:26:02 (6 years ago)
- Location:
- branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IAssignmentAwareGQAPOperator.cs
r16077 r16712 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Encodings.IntegerVectorEncoding; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 27 [StorableType("1A005153-0B2E-4C8F-993A-F7B03438A359")] 26 28 public interface IAssignmentAwareGQAPOperator : IGQAPOperator { 27 29 ILookupParameter<IntegerVector> AssignmentParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IBestKnownQualityAwareGQAPOperator.cs
r16077 r16712 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 27 [StorableType("91E65BE8-8BFA-440B-A314-0494E70ED558")] 26 28 public interface IBestKnownQualityAwareGQAPOperator : IGQAPOperator { 27 29 ILookupParameter<DoubleValue> BestKnownQualityParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IBestKnownSolutionAwareGQAPOperator.cs
r16077 r16712 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 26 [StorableType("A90653A3-28DB-49AD-A7D5-07F689116BC6")] 25 27 public interface IBestKnownSolutionAwareGQAPOperator : IGQAPOperator { 26 28 ILookupParameter<GQAPAssignment> BestKnownSolutionParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IBestKnownSolutionsAwareGQAPOperator.cs
r16077 r16712 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 26 [StorableType("C8CCB98C-2792-427C-9C31-289364C4CFF7")] 25 27 public interface IBestKnownSolutionsAwareGQAPOperator : IGQAPOperator { 26 28 ILookupParameter<GQAPAssignmentArchive> BestKnownSolutionsParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IMoveQualityAwareGQAPOperator.cs
r16077 r16712 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 27 [StorableType("9CFFCC2B-E7AC-4719-ABA8-4FAAD1EE106F")] 26 28 public interface IMoveQualityAwareGQAPOperator : IGQAPMoveOperator { 27 29 ILookupParameter<DoubleValue> MoveQualityParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IProblemInstanceAwareGQAPOperator.cs
r16077 r16712 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 26 [StorableType("5780BD3B-C406-4C0E-96E9-52336301FFA2")] 25 27 public interface IProblemInstanceAwareGQAPOperator : IGQAPOperator { 26 28 ILookupParameter<GQAPInstance> ProblemInstanceParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IQualitiesAwareGQAPOperator.cs
r16077 r16712 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 27 [StorableType("94E6E70C-6BF4-4F57-9D2E-8AC7E5716C34")] 26 28 public interface IQualitiesAwareGQAPOperator : IGQAPOperator { 27 29 IScopeTreeLookupParameter<DoubleValue> QualityParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IQualityAwareGQAPOperator.cs
r16077 r16712 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Data; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 27 [StorableType("903B1E5E-980E-440D-BFEF-C4EC8E3D01B4")] 26 28 public interface IQualityAwareGQAPOperator : IGQAPOperator { 27 29 ILookupParameter<DoubleValue> QualityParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.