Changeset 15572 for branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch
- Timestamp:
- 01/03/18 00:28:51 (7 years ago)
- Location:
- branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch/IteratedLS.cs
r15564 r15572 25 25 using HeuristicLab.Core; 26 26 using HeuristicLab.Data; 27 using HeuristicLab.Encodings.IntegerVectorEncoding; 27 28 using HeuristicLab.Optimization; 28 29 using HeuristicLab.Parameters; … … 33 34 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms)] 34 35 [StorableClass] 35 public sealed class IteratedLS : StochasticAlgorithm<LocalSearchContext > {36 public sealed class IteratedLS : StochasticAlgorithm<LocalSearchContext, IntegerVectorEncoding> { 36 37 37 38 public override bool SupportsPause { -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch/LocalSearchContext.cs
r15562 r15572 26 26 27 27 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.LocalSearch { 28 public sealed class LocalSearchContext : Single ObjectiveSingleSolutionContext<ISingleObjectiveSolutionScope<GQAPSolution>> {28 public sealed class LocalSearchContext : SingleSolutionContext<ISingleObjectiveSolutionScope<GQAPSolution>> { 29 29 [Storable] 30 30 private IValueParameter<GQAP> problem; -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch/MultistartLS.cs
r15564 r15572 33 33 [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms)] 34 34 [StorableClass] 35 public sealed class MultistartLS : StochasticAlgorithm<LocalSearchContext > {35 public sealed class MultistartLS : StochasticAlgorithm<LocalSearchContext, IntegerVectorEncoding> { 36 36 37 37 public override bool SupportsPause {
Note: See TracChangeset
for help on using the changeset viewer.