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
example code for graph interface
[aco.git]
/
si
/
ant
/
graph
/
Distance.java
blob
cd1dcc200f96e373195aa52634fb22742ca6105f
1
package
si
.
ant
.
graph
;
2
3
public abstract class
Distance
{
4
5
public abstract double
getDistance
();
6
public abstract void
setDistance
(
double
distance
);
7
8
protected double
distance
;
9
10
}