Changeset 13094 for trunk/sources/HeuristicLab.Optimization.Operators
- Timestamp:
- 10/30/15 16:26:07 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Operators/3.3/UnidirectionalRingMigrator.cs
r13078 r13094 39 39 } 40 40 41 public BoolValue ClockwiseMigrationDirection 42 { 43 get { return ClockwiseMigrationDirectionParameter.Value; } 44 set { ClockwiseMigrationDirectionParameter.Value = value; } 45 } 46 41 47 [StorableConstructor] 42 48 protected UnidirectionalRingMigrator(bool deserializing) : base(deserializing) { } … … 47 53 Parameters.Add(new ValueLookupParameter<BoolValue>("ClockwiseMigrationDirection", "True to migrate individuals clockwise, otherwise migrate individuals counterclockwise.", new BoolValue(true))); 48 54 } 49 50 55 51 56 [StorableHook(HookType.AfterDeserialization)]
Note: See TracChangeset
for help on using the changeset viewer.