Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/21/10 18:33:42 (15 years ago)
Author:
svonolfe
Message:

Added simple view for the KnapsackProblem (#917)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Knapsack/3.3/Interfaces/IKnapsackSolutionsVisualizer.cs

    r3116 r3467  
    2121
    2222using HeuristicLab.Optimization;
     23using HeuristicLab.Core;
     24using HeuristicLab.Encodings.BinaryVectorEncoding;
     25using HeuristicLab.Data;
    2326
    2427namespace HeuristicLab.Problems.Knapsack {
     
    2629  /// An interface which represents an operator for visualizing solutions of Knapsack Problems.
    2730  /// </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  }
    2937}
Note: See TracChangeset for help on using the changeset viewer.