#region License Information
/* HeuristicLab
* Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using HeuristicLab.Problems.VehicleRouting.Interfaces;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
using HeuristicLab.Core;
using HeuristicLab.Parameters;
using HeuristicLab.Data;
using HeuristicLab.Optimization;
using HeuristicLab.PluginInfrastructure;
using HeuristicLab.Problems.VehicleRouting.Variants;
namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
[Item("CVRPProblemInstance", "Represents a single depot CVRP instance.")]
[StorableClass]
public class CVRPProblemInstance: SingleDepotVRPProblemInstance, IHomogenousCapacitatedProblemInstance {
protected IValueParameter CapacityParameter {
get { return (IValueParameter)Parameters["Capacity"]; }
}
protected IValueParameter OverloadPenaltyParameter {
get { return (IValueParameter)Parameters["EvalOverloadPenalty"]; }
}
public DoubleValue Capacity {
get { return CapacityParameter.Value; }
set { CapacityParameter.Value = value; }
}
public DoubleValue OverloadPenalty {
get { return OverloadPenaltyParameter.Value; }
set { OverloadPenaltyParameter.Value = value; }
}
protected override IEnumerable GetOperators() {
return base.GetOperators()
.Where(o => o is IHomogenousCapacitatedOperator).Cast();
}
protected override IEnumerable GetAnalyzers() {
return ApplicationManager.Manager.GetInstances()
.Where(o => o is IAnalyzer)
.Cast().Union(base.GetAnalyzers());
}
protected override IVRPEvaluator Evaluator {
get {
return new CVRPEvaluator();
}
}
[StorableConstructor]
protected CVRPProblemInstance(bool deserializing) : base(deserializing) { }
public CVRPProblemInstance() {
Parameters.Add(new ValueParameter("Capacity", "The capacity of each vehicle.", new DoubleValue(0)));
Parameters.Add(new ValueParameter("EvalOverloadPenalty", "The overload penalty considered in the evaluation.", new DoubleValue(100)));
}
}
}