Free cookie consent management tool by TermsFeed Policy Generator

source: branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/ProblemInstances/Evaluation/VRPEvaluation.cs @ 4362

Last change on this file since 4362 was 4362, checked in by svonolfe, 14 years ago

Added initial version - WIP (#1177)

File size: 388 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances.Evaluation {
7  public class VRPEvaluation {
8    public double Quality { get; set; }
9    public double Distance { get; set; }
10    public int VehicleUtilization { get; set; }
11
12    public double Penalty { get; set; }
13  }
14}
Note: See TracBrowser for help on using the repository browser.