Changeset 5287 for trunk/sources/HeuristicLab.Problems.Knapsack
- Timestamp:
- 01/12/11 09:13:15 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.Knapsack/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Knapsack/3.3/KnapsackProblem.cs
r4722 r5287 41 41 42 42 public override Image ItemImage { 43 get { return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Type; }43 get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; } 44 44 } 45 45 … … 167 167 168 168 InitializeRandomKnapsackInstance(); 169 169 170 170 ParameterizeSolutionCreator(); 171 171 ParameterizeEvaluator(); … … 278 278 } 279 279 private void ParameterizeSolutionCreator() { 280 if (SolutionCreator.LengthParameter.Value == null ||280 if (SolutionCreator.LengthParameter.Value == null || 281 281 SolutionCreator.LengthParameter.Value.Value != WeightsParameter.Value.Length) 282 282 SolutionCreator.LengthParameter.Value = new IntValue(WeightsParameter.Value.Length); -
trunk/sources/HeuristicLab.Problems.Knapsack/3.3/KnapsackSolution.cs
r4722 r5287 36 36 public class KnapsackSolution : Item { 37 37 public override Image ItemImage { 38 get { return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Image; }38 get { return HeuristicLab.Common.Resources.VSImageLibrary.Image; } 39 39 } 40 40
Note: See TracChangeset
for help on using the changeset viewer.