Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/10/15 12:11:55 (9 years ago)
Author:
mkommend
Message:

#2025:Merged all changes regarding the new item dialog into stable.
#2387: Merged all changes regarding the type selector into stable.

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.LinearAssignment/3.3/HungarianAlgorithm.cs

    r12009 r12708  
    3535  /// </summary>
    3636  [Item("Hungarian Algorithm", "The Hungarian algorithm can be used to solve the linear assignment problem in O(n^3). It is also known as the Kuhn–Munkres algorithm or Munkres assignment algorithm.")]
    37   [Creatable("Algorithms")]
     37  [Creatable(CreatableAttribute.Categories.SingleSolutionAlgorithms, Priority = 170)]
    3838  [StorableClass]
    3939  public sealed class HungarianAlgorithm : EngineAlgorithm, IStorableContent {
  • stable/HeuristicLab.Problems.LinearAssignment/3.3/LinearAssignmentProblem.cs

    r12009 r12708  
    3434namespace HeuristicLab.Problems.LinearAssignment {
    3535  [Item("Linear Assignment Problem", "In the linear assignment problem (LAP) an assignment of workers to jobs has to be found such that each worker is assigned to exactly one job, each job is assigned to exactly one worker and the sum of the resulting costs is minimal (or maximal).")]
    36   [Creatable("Problems")]
     36  [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 130)]
    3737  [StorableClass]
    3838  public sealed class LinearAssignmentProblem : SingleObjectiveHeuristicOptimizationProblem<ILAPEvaluator, IPermutationCreator>, IStorableContent {
Note: See TracChangeset for help on using the changeset viewer.