Changeset 3719 for trunk/sources/HeuristicLab.Optimization/3.3/Interfaces
- Timestamp:
- 05/08/10 16:33:50 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IRealVectorDecoder.cs
r3682 r3719 10 10 IParameter RealVectorParameter { get; } 11 11 ILookupParameter<IntValue> LengthParameter { get; } 12 IValueParameter<DoubleMatrix> BoundsParameter { get; } 12 13 } 13 14 } -
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IRealVectorEncoder.cs
r3682 r3719 27 27 namespace HeuristicLab.Optimization { 28 28 public interface IRealVectorEncoder : IOperator { 29 //Type DecoderType { get; }30 29 IParameter RealVectorParameter { get; } 31 30 ILookupParameter<IntValue> LengthParameter { get; } 31 IValueLookupParameter<DoubleMatrix> BoundsParameter { get; } 32 32 } 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.