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.OneMax/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.OneMax/3.3/OneMaxSolution.cs

    r4722 r5287  
    3636  public sealed class OneMaxSolution : Item {
    3737    public override Image ItemImage {
    38       get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Image; }
     38      get { return HeuristicLab.Common.Resources.VSImageLibrary.Image; }
    3939    }
    4040
  • trunk/sources/HeuristicLab.Problems.OneMax/3.3/OnemaxProblem.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
     
    236236      operators.Add(new BestOneMaxSolutionAnalyzer());
    237237      ParameterizeAnalyzer();
    238       foreach(IBinaryVectorOperator op in ApplicationManager.Manager.GetInstances<IBinaryVectorOperator>()) {
     238      foreach (IBinaryVectorOperator op in ApplicationManager.Manager.GetInstances<IBinaryVectorOperator>()) {
    239239        if (!(op is ISingleObjectiveMoveEvaluator) || (op is IOneMaxMoveEvaluator)) {
    240240          operators.Add(op);
Note: See TracChangeset for help on using the changeset viewer.