comparison src/main/java/suikwasha/distributedalgorithm/framework/Topology.java @ 0:38a110b13db1

added SimpleDistributedAlgorithmFramework. added NaiveAlgorithm added ChangRobertsAlgorithm added PertersonAlgorithm
author suikwasha
date Fri, 19 Oct 2012 00:05:41 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:38a110b13db1
1 package suikwasha.distributedalgorithm.framework;
2
3 public interface Topology
4 {
5 public Iterable<Machine> getMachines();
6 public long getMachineCount();
7 }