- Timestamp:
- 08/23/10 16:49:22 (14 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings
- Files:
-
- 12 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/PermutationEncoding.cs
r4268 r4293 27 27 using System.Collections.Generic; 28 28 using HeuristicLab.Problems.VehicleRouting.Encodings.General; 29 using System; 29 30 30 31 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { … … 47 48 : base() { 48 49 } 50 51 public int IndexOf(int city) { 52 return Array.IndexOf(this.array, city); 53 } 49 54 } 50 55 }
Note: See TracChangeset
for help on using the changeset viewer.