Free cookie consent management tool by TermsFeed Policy Generator

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

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

Worked on the evaluators and on the project structure of the VRP plugin - WIP (#1177)

File size: 377 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Problems.VehicleRouting.ProblemInstances {
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.