Changeset 14106 for trunk/sources/HeuristicLab.Problems.PTSP/3.3/Moves
- Timestamp:
- 07/18/16 17:30:13 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.PTSP/3.3/Moves/TwoPointFiveOpt/TwoPointFiveMove.cs
r13412 r14106 30 30 public sealed class TwoPointFiveMove : Item { 31 31 [Storable] 32 public int Index1 { get; pr otectedset; }32 public int Index1 { get; private set; } 33 33 [Storable] 34 public int Index2 { get; pr otectedset; }34 public int Index2 { get; private set; } 35 35 [Storable] 36 public Permutation Permutation { get; pr otectedset; }36 public Permutation Permutation { get; private set; } 37 37 [Storable] 38 public bool IsInvert { get; pr otectedset; }38 public bool IsInvert { get; private set; } 39 39 40 40 [StorableConstructor]
Note: See TracChangeset
for help on using the changeset viewer.