Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/04/10 17:34:02 (14 years ago)
Author:
svonolfe
Message:

Further improved the VRP design (#1039)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/Alba/Moves/AlbaMoveOperator.cs

    r4150 r4154  
    2929  [Item("AlbaMoveOperator", "A move operator for an alba VRP representation.")]
    3030  [StorableClass]
    31   public abstract class AlbaMoveOperator : VRPMoveOperator {
    32     public ILookupParameter<IntValue> VehiclesParameter {
    33       get { return (ILookupParameter<IntValue>)Parameters["Vehicles"]; }
    34     }
    35 
    36     public AlbaMoveOperator()
    37       : base() {
    38       Parameters.Add(new LookupParameter<IntValue>("Vehicles", "The vehicles count."));
    39     }
    40    
     31  public abstract class AlbaMoveOperator : VRPMoveOperator {   
    4132    [Storable]
    4233    protected abstract IPermutationMoveOperator PermutationMoveOperatorParameter { get; set; }
Note: See TracChangeset for help on using the changeset viewer.