Change main

This commit is contained in:
manzerbredes 2016-03-14 20:30:30 +01:00
parent c9ec878c32
commit c444380c9a

View file

@ -1,5 +1,8 @@
package main;
import org.graphstream.graph.Graph;
import org.graphstream.graph.implementations.SingleGraph;
import structure.Grid;
public class Main {
@ -8,5 +11,16 @@ public class Main {
Grid g=new Grid();
g.printLinkWeight();
System.out.println("Best link : " + g.getBestLinkIndex());
Graph graph = new SingleGraph("Tutorial 1");
graph.addNode("A");
graph.addNode("B");
graph.addNode("C");
graph.addEdge("AB", "A", "B");
graph.addEdge("BC", "B", "C");
graph.addEdge("CA", "C", "A");
graph.getEdge(0).addAttribute("ui.style", "fill-color: red;");
graph.display(false);
}
}