- Timestamp:
- 01/12/11 09:13:15 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/TourEncoding.cs
r4856 r5287 22 22 using System.Collections.Generic; 23 23 using System.Drawing; 24 using System.Text; 24 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Core; 26 27 using HeuristicLab.Data; 27 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using System.Text;29 29 30 30 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { … … 33 33 public abstract class TourEncoding : Item, IVRPEncoding { 34 34 public override Image ItemImage { 35 get { return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Class; }35 get { return HeuristicLab.Common.Resources.VSImageLibrary.Class; } 36 36 } 37 37 … … 116 116 } 117 117 118 return sb.ToString(); 118 return sb.ToString(); 119 119 } 120 120 }
Note: See TracChangeset
for help on using the changeset viewer.