- Timestamp:
- 04/21/10 18:33:42 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Knapsack/3.3/Interfaces/IKnapsackSolutionsVisualizer.cs
r3116 r3467 21 21 22 22 using HeuristicLab.Optimization; 23 using HeuristicLab.Core; 24 using HeuristicLab.Encodings.BinaryVectorEncoding; 25 using HeuristicLab.Data; 23 26 24 27 namespace HeuristicLab.Problems.Knapsack { … … 26 29 /// An interface which represents an operator for visualizing solutions of Knapsack Problems. 27 30 /// </summary> 28 public interface IKnapsackSolutionsVisualizer : ISingleObjectiveSolutionsVisualizer { } 31 public interface IKnapsackSolutionsVisualizer : ISingleObjectiveSolutionsVisualizer { 32 ILookupParameter<ItemArray<BinaryVector>> BinaryVectorParameter { get; } 33 ILookupParameter<IntValue> KnapsackCapacityParameter { get; } 34 ILookupParameter<IntArray> WeightsParameter { get; } 35 ILookupParameter<IntArray> ValuesParameter { get; } 36 } 29 37 }
Note: See TracChangeset
for help on using the changeset viewer.