routage-optimiste/main/Main.java

13 lines
212 B
Java
Raw Normal View History

2016-02-23 13:34:10 +01:00
package main;
2016-03-14 18:02:24 +01:00
import structure.Grid;
2016-03-14 16:35:31 +01:00
2016-02-23 13:34:10 +01:00
public class Main {
public static void main(String[] args) {
2016-03-14 18:02:24 +01:00
Grid g=new Grid();
2016-03-14 18:27:27 +01:00
g.printLinkWeight();
System.out.println("Best link : " + g.getBestLinkIndex());
2016-02-23 13:34:10 +01:00
}
}