Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/11 09:13:15 (13 years ago)
Author:
abeham
Message:

#1337

  • Renamed VS2008ImageLibrary resource to VSImageLibrary
  • Added Filter icon to the VS2010ImageLibrary folder and the resource manager
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  
    4141
    4242    public override Image ItemImage {
    43       get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Type; }
     43      get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; }
    4444    }
    4545
     
    167167
    168168      InitializeRandomKnapsackInstance();
    169      
     169
    170170      ParameterizeSolutionCreator();
    171171      ParameterizeEvaluator();
     
    278278    }
    279279    private void ParameterizeSolutionCreator() {
    280       if(SolutionCreator.LengthParameter.Value == null ||
     280      if (SolutionCreator.LengthParameter.Value == null ||
    281281        SolutionCreator.LengthParameter.Value.Value != WeightsParameter.Value.Length)
    282282        SolutionCreator.LengthParameter.Value = new IntValue(WeightsParameter.Value.Length);
  • trunk/sources/HeuristicLab.Problems.Knapsack/3.3/KnapsackSolution.cs

    r4722 r5287  
    3636  public class KnapsackSolution : Item {
    3737    public override Image ItemImage {
    38       get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Image; }
     38      get { return HeuristicLab.Common.Resources.VSImageLibrary.Image; }
    3939    }
    4040
Note: See TracChangeset for help on using the changeset viewer.