repo.or.cz
/
aco.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move initial ant system algorithm to protoas package
[aco.git]
/
aco
/
misc
/
CoordinatePair.java
blob
041c8ff58cc91af541bcdad31661f752ac5167a2
1
package
aco
.
misc
;
2
3
public class
CoordinatePair
<
F
,
S
>
4
extends
Pair
<
F
,
S
> {
5
6
public
CoordinatePair
(
F first
,
S second
) {
7
super
(
first
,
second
);
8
}
9
10
}