Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/19/12 13:17:29 (12 years ago)
Author:
ascheibe
Message:

#1722 fixed more licensing information and source formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/VRPEvaluator.cs

    r7276 r8053  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
     22using HeuristicLab.Common;
     23using HeuristicLab.Core;
     24using HeuristicLab.Data;
     25using HeuristicLab.Parameters;
     26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     27using HeuristicLab.Problems.VehicleRouting.Encodings;
    2628using HeuristicLab.Problems.VehicleRouting.Interfaces;
    27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    28 using HeuristicLab.Core;
    29 using HeuristicLab.Parameters;
    30 using HeuristicLab.Data;
    31 using HeuristicLab.Optimization;
    32 using HeuristicLab.PluginInfrastructure;
    33 using HeuristicLab.Problems.VehicleRouting.Variants;
    34 using HeuristicLab.Problems.VehicleRouting.Encodings;
    35 using HeuristicLab.Common;
    3629
    3730namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
    3831  [Item("VRPEvaluator", "Represents a VRP evaluator.")]
    3932  [StorableClass]
    40   public abstract class VRPEvaluator: VRPOperator, IVRPEvaluator {
     33  public abstract class VRPEvaluator : VRPOperator, IVRPEvaluator {
    4134    public ILookupParameter<IVRPEncoding> VRPToursParameter {
    4235      get { return (ILookupParameter<IVRPEncoding>)Parameters["VRPTours"]; }
    4336    }
    44    
     37
    4538    #region ISingleObjectiveEvaluator Members
    4639    public ILookupParameter<DoubleValue> QualityParameter {
     
    5952      get { return (ILookupParameter<DoubleValue>)Parameters["Penalty"]; }
    6053    }
    61    
     54
    6255    [StorableConstructor]
    6356    protected VRPEvaluator(bool deserializing) : base(deserializing) { }
     
    110103        instance,
    111104        solution,
    112         eval.InsertionInfo.GetTourInsertionInfo(tour), 
     105        eval.InsertionInfo.GetTourInsertionInfo(tour),
    113106        index,
    114107        customer, out tourFeasible);
Note: See TracChangeset for help on using the changeset viewer.