Last change
on this file since 15157 was
8520,
checked in by spimming, 12 years ago
|
#1894:
- extended datasource interface to get routing graph for a specific vehicle type
- use ICostCalculator to calculate edge weights
- moved common enums in own file
- removed method to estimate cost from graph; use ICostCalculator
|
File size:
1.4 KB
|
Rev | Line | |
---|
[8516] | 1 |
|
---|
| 2 | using HeuristicLab.Problems.RoutePlanning.Interfaces;
|
---|
| 3 | namespace HeuristicLab.Problems.RoutePlanning.RoutingGraph {
|
---|
| 4 | public class Edge<Vertex> : IEdge<Vertex> {
|
---|
| 5 | private readonly Vertex source;
|
---|
| 6 | public Vertex Source {
|
---|
| 7 | get { return this.source; }
|
---|
| 8 | }
|
---|
| 9 |
|
---|
| 10 | private readonly Vertex target;
|
---|
| 11 | public Vertex Target {
|
---|
| 12 | get { return this.target; }
|
---|
| 13 | }
|
---|
| 14 |
|
---|
[8520] | 15 | //private short category;
|
---|
| 16 | //public short Category {
|
---|
| 17 | // get { return category; }
|
---|
| 18 | // set { category = value; }
|
---|
| 19 | //}
|
---|
[8516] | 20 |
|
---|
| 21 | private float weight;
|
---|
| 22 | public float Weight {
|
---|
| 23 | get { return weight; }
|
---|
| 24 | set { weight = value; }
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | public Edge(Vertex source, Vertex target)
|
---|
| 28 | : this(source, target, 0) {
|
---|
| 29 |
|
---|
| 30 | }
|
---|
| 31 |
|
---|
[8520] | 32 | public Edge(Vertex source, Vertex target, float weight) {
|
---|
[8516] | 33 | this.source = source;
|
---|
| 34 | this.target = target;
|
---|
[8520] | 35 | this.weight = weight;
|
---|
[8516] | 36 | }
|
---|
| 37 |
|
---|
| 38 | public override string ToString() {
|
---|
| 39 | return string.Format("{0}->{1}", this.Source, this.Target);
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | public override bool Equals(object obj) {
|
---|
| 43 | if (obj is Edge<Vertex>) {
|
---|
| 44 | Edge<Vertex> e = (obj as Edge<Vertex>);
|
---|
| 45 | return (this.source.Equals(e.source)) && (this.target.Equals(e.target));
|
---|
| 46 | }
|
---|
| 47 | return false;
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | public override int GetHashCode() {
|
---|
| 51 | return source.GetHashCode() ^ target.GetHashCode();
|
---|
| 52 | }
|
---|
| 53 | }
|
---|
| 54 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.