Changeset 12505 for branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Problems.LinearAssignment
- Timestamp:
- 06/25/15 11:26:25 (9 years ago)
- Location:
- branches/HeuristicLab.DatasetRefactor/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DatasetRefactor/sources
- Property svn:mergeinfo changed
/trunk/sources merged: 12442-12443,12445,12455-12458,12461,12463-12465,12470-12476,12478-12482,12485,12488,12490-12494,12496-12497,12504 -
Property
svn:global-ignores
set to
*.nuget
packages
- Property svn:mergeinfo changed
-
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Problems.LinearAssignment/3.3/HungarianAlgorithm.cs
r12031 r12505 35 35 /// </summary> 36 36 [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)] 38 38 [StorableClass] 39 39 public sealed class HungarianAlgorithm : EngineAlgorithm, IStorableContent { -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Problems.LinearAssignment/3.3/LinearAssignmentProblem.cs
r12031 r12505 34 34 namespace HeuristicLab.Problems.LinearAssignment { 35 35 [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)] 37 37 [StorableClass] 38 38 public sealed class LinearAssignmentProblem : SingleObjectiveHeuristicOptimizationProblem<ILAPEvaluator, IPermutationCreator>, IStorableContent {
Note: See TracChangeset
for help on using the changeset viewer.