Changeset 8327 for branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.Knapsack/3.3/Improvers
- Timestamp:
- 07/25/12 14:28:42 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.Knapsack/3.3/Improvers/KnapsackImprovementOperator.cs
r8320 r8327 39 39 /// The operator first orders the elements of the knapsack according to their value-to-weight ratio, then, if the solution is not feasible, removes the element with the lowest ratio until the solution is feasible and tries to add new elements with the best ratio that are not already included yet until the knapsack is full. 40 40 /// </remarks> 41 [Item("KnapsackImprovementOperator", "An operator that improves knapsack solutions. ")]41 [Item("KnapsackImprovementOperator", "An operator that improves knapsack solutions. It is implemented as described in Laguna, M. and Martí, R. (2003). Scatter Search: Methodology and Implementations in C. Operations Research/Computer Science Interfaces Series, Vol. 24. Springer.")] 42 42 [StorableClass] 43 43 public sealed class KnapsackImprovementOperator : SingleSuccessorOperator, ISingleObjectiveImprovementOperator {
Note: See TracChangeset
for help on using the changeset viewer.