Change main
This commit is contained in:
parent
c9ec878c32
commit
c444380c9a
1 changed files with 14 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue