Changeset 13404 for branches/ProblemRefactoring/HeuristicLab.Problems.Knapsack/3.3/Interfaces/IKnapsackBitflipMoveEvaluator.cs
- Timestamp:
- 11/26/15 09:30:43 (9 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Problems.Knapsack/3.3/Interfaces/IKnapsackBitflipMoveEvaluator.cs
r13402 r13404 20 20 #endregion 21 21 22 using HeuristicLab.Core; 23 using HeuristicLab.Data; 24 using HeuristicLab.Optimization; 22 using HeuristicLab.Encodings.BinaryVectorEncoding; 25 23 26 24 namespace HeuristicLab.Problems.Knapsack { 27 public interface IKnapsackMoveEvaluator : ISingleObjectiveMoveEvaluator, IMoveOperator { 28 ILookupParameter<IntValue> KnapsackCapacityParameter { get; } 29 ILookupParameter<DoubleValue> PenaltyParameter { get; } 30 ILookupParameter<IntArray> WeightsParameter { get; } 31 ILookupParameter<IntArray> ValuesParameter { get; } 32 } 25 public interface IKnapsackOneBitflipMoveEvaluator : IKnapsackMoveEvaluator, IOneBitflipMoveOperator { } 33 26 }
Note: See TracChangeset
for help on using the changeset viewer.