Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/06/15 17:52:14 (10 years ago)
Author:
abeham
Message:

#2174: Integrated programmable problem into trunk

  • Fixed build configuration
  • Fixed some assembly references that had CopyLocal set to true
  • Added a missing license header
  • Cleaned some usings
  • Fixed the version number in ExternalEvaluation.GP
  • Added ProgrammableProblem and new ExternalEvaluationProblem as a reference to unit tests
  • Fixed plugin dependencies and assembly references
  • Changed icon of programmable problem to script icon
  • Fixed name clash in VRP that also had defined a "PermutationEncoding" class
  • (Hopefully) fixed all output paths
Location:
trunk/sources/HeuristicLab.Problems.Programmable
Files:
2 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Programmable/3.3

    • Property svn:ignore
      •  

        old new  
        11*.user
         2bin
  • trunk/sources/HeuristicLab.Problems.Programmable/3.3/SingleObjectiveProgrammableProblem.cs

    r11949 r11961  
    2020#endregion
    2121
    22 using System;
    2322using System.Collections.Generic;
     23using System.Drawing;
    2424using HeuristicLab.Common;
     25using HeuristicLab.Common.Resources;
    2526using HeuristicLab.Core;
    2627using HeuristicLab.Optimization;
     
    3031namespace HeuristicLab.Problems.Programmable {
    3132  [Item("Programmable Problem (single-objective)", "Represents a single-objective problem that can be programmed with a script.")]
    32   [Creatable("1 Test")]
     33  [Creatable("Problems")]
    3334  [StorableClass]
    3435  public sealed class SingleObjectiveProgrammableProblem : SingleObjectiveBasicProblem<IEncoding> {
     36    public static new Image StaticItemImage {
     37      get { return VSImageLibrary.Script; }
     38    }
    3539
    3640    private FixedValueParameter<SingleObjectiveProblemDefinitionScript> SingleObjectiveProblemScriptParameter {
Note: See TracChangeset for help on using the changeset viewer.