Changeset 16665
- Timestamp:
- 03/07/19 19:17:54 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Optimization/3.3/BasicProblems/Encoding.cs
r16662 r16665 32 32 [StorableType("395B1372-FA54-4649-9EBE-5402A0AA9494")] 33 33 public abstract class Encoding<T> : ParameterizedNamedItem, IEncoding 34 where T : class, ISolutionCreator {34 where T : class, ISolutionCreator { 35 35 public override sealed bool CanChangeName { 36 36 get { return false; } … … 42 42 private IEnumerable<IOperator> StorableOperators { 43 43 get { return encodingOperators; } 44 set { encodingOperators = new ItemSet<IOperator>(value, new TypeEqualityComparer<IOperator>());; }44 set { encodingOperators = (ItemSet<IOperator>)value; } 45 45 } 46 46
Note: See TracChangeset
for help on using the changeset viewer.