routage-optimiste/main/Main.java
manzerbredes 0e1704bbcb Add live
2016-03-21 18:02:31 +01:00

42 lines
889 B
Java

package main;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Set;
import org.graphstream.graph.Edge;
import org.graphstream.graph.Graph;
import org.graphstream.graph.implementations.SingleGraph;
import org.graphstream.ui.layout.springbox.EdgeSpring;
import org.graphstream.ui.swingViewer.basicRenderer.EdgeRenderer;
import org.graphstream.ui.util.EdgePoints;
import structure.Grid;
import structure.MyGraph;
import structure.Router;
public class Main {
public static void main(String[] args) {
Grid g=new Grid();
MyGraph gr=new MyGraph("Routage Oportuniste", g);
gr.display();
while(true){
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
g.buildRandomLink();
System.out.println("Update !");
gr.update();
}
}
}