move abstract method definitions to abstract ASPheromoneStrategy class
[aco.git] / protoas / CoordinatePair.java
blobd55c5723f38958c606ef20ececdba6da3097be00
1 package protoas;
3 class CoordinatePair<F, S> {
4 private final F first;
5 private final S second;
7 CoordinatePair(F first, S second) {
8 this.first = first;
9 this.second = second;
12 public F getFirst() {
13 return this.first;
16 public S getSecond() {
17 return this.second;