Changeset 16712 for branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator
- Timestamp:
- 03/25/19 17:26:02 (6 years ago)
- Location:
- branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPCrossover.cs
r16077 r16712 23 23 using HeuristicLab.Encodings.IntegerVectorEncoding; 24 24 using HeuristicLab.Optimization; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 28 [StorableType("E2FD76F9-82CC-466A-AB42-5B31F02D45FC")] 27 29 public interface IGQAPCrossover : IGQAPOperator, ICrossover { 28 30 IScopeTreeLookupParameter<IntegerVector> ParentsParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPLocalImprovementOperator.cs
r16077 r16712 23 23 using HeuristicLab.Encodings.IntegerVectorEncoding; 24 24 using HeuristicLab.Optimization; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 28 [StorableType("D22AA954-0957-4F71-9D3C-A614F53A4821")] 27 29 public interface IGQAPLocalImprovementOperator : ILocalImprovementAlgorithmOperator { 28 30 ILookupParameter<IntegerVector> AssignmentParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPManipulator.cs
r16077 r16712 23 23 using HeuristicLab.Encodings.IntegerVectorEncoding; 24 24 using HeuristicLab.Optimization; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 28 [StorableType("A3C58BBD-1652-456B-AF71-D58F782A47D6")] 27 29 public interface IGQAPManipulator : IManipulator { 28 30 ILookupParameter<IntegerVector> AssignmentParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPMoveEvaluator.cs
r16077 r16712 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Optimization; 24 using HEAL.Attic; 24 25 25 26 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 27 [StorableType("8DE86FE9-07B9-4550-B36C-4DC6B2F58272")] 26 28 public interface IGQAPMoveEvaluator : IGQAPMoveOperator, ISingleObjectiveMoveEvaluator { 27 29 ILookupParameter<Evaluation> MoveEvaluationParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPMoveOperator.cs
r16077 r16712 23 23 using HeuristicLab.Encodings.IntegerVectorEncoding; 24 24 using HeuristicLab.Optimization; 25 using HEAL.Attic; 25 26 26 27 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 28 [StorableType("BB1D416A-CFE4-4CEF-875F-905F38861087")] 27 29 public interface IGQAPMoveOperator : IMoveOperator { 28 30 ILookupParameter<IntegerVector> AssignmentParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPNMoveEvaluator.cs
r16077 r16712 1 #region License Information 1 using HEAL.Attic; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 21 22 22 23 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 24 [StorableType("ACEEB42B-09AA-432C-98B4-2C6BBF0D38E5")] 23 25 public interface IGQAPNMoveEvaluator : IGQAPMoveEvaluator, IGQAPNMoveOperator { } 24 26 } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPNMoveOperator.cs
r16077 r16712 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 26 [StorableType("4128D4FF-A36C-4D3F-ADE1-B63407D5C7DE")] 25 27 public interface IGQAPNMoveOperator : IGQAPMoveOperator { 26 28 ILookupParameter<NMove> MoveParameter { get; } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPOperator.cs
r16077 r16712 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 26 [StorableType("521D5B7F-85A0-4BE9-89B2-CA0C3B5B9338")] 25 27 public interface IGQAPOperator : IOperator { } 26 28 } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPSolutionCreator.cs
r16077 r16712 21 21 22 22 using HeuristicLab.Encodings.IntegerVectorEncoding; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 25 public interface IGQAPSolutionCreator : IIntegerVectorCreator { } 26 [StorableType("02E67D15-F15E-4255-855B-8BA2534E7B2E")] 27 public interface IGQAPSolutionCreator : IIntegerVectorCreator { } 26 28 }
Note: See TracChangeset
for help on using the changeset viewer.