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

added SimpleDistributedAlgorithmFramework. added NaiveAlgorithm added ChangRobertsAlgorithm added PertersonAlgorithm
author suikwasha
date Fri, 19 Oct 2012 00:05:41 +0900
parents
children 8e1f63faa2fd
comparison
equal deleted inserted replaced
-1:000000000000 0:38a110b13db1
1 package suikwasha.distributedalgorithm.framework;
2
3 public interface Algorithm
4 {
5 public void execute(Context _c);
6 }