Search in sources :

Example 66 with GraphModel

use of org.gephi.graph.api.GraphModel in project gephi by gephi.

the class WeightedDegreeNGTest method testNullGraphDegree.

@Test
public void testNullGraphDegree() {
    GraphModel graphModel = GraphGenerator.generateNullUndirectedGraph(5);
    Graph graph = graphModel.getGraph();
    Node n = graph.getNode("1");
    WeightedDegree d = new WeightedDegree();
    d.execute(graph);
    double degree = (Double) n.getAttribute(WeightedDegree.WDEGREE);
    double avDegree = d.getAverageDegree();
    assertEquals(degree, 0.0);
    assertEquals(avDegree, 0.0);
}
Also used : Graph(org.gephi.graph.api.Graph) DirectedGraph(org.gephi.graph.api.DirectedGraph) GraphModel(org.gephi.graph.api.GraphModel) Node(org.gephi.graph.api.Node) Test(org.testng.annotations.Test)

Example 67 with GraphModel

use of org.gephi.graph.api.GraphModel in project gephi by gephi.

the class ModularityNGTest method testCyclicWithWeightsGraphModularity.

@Test
public void testCyclicWithWeightsGraphModularity() {
    GraphModel graphModel = Lookup.getDefault().lookup(GraphController.class).getGraphModel();
    UndirectedGraph undirectedGraph = graphModel.getUndirectedGraph();
    Node node1 = graphModel.factory().newNode("0");
    Node node2 = graphModel.factory().newNode("1");
    Node node3 = graphModel.factory().newNode("2");
    Node node4 = graphModel.factory().newNode("3");
    Node node5 = graphModel.factory().newNode("4");
    Node node6 = graphModel.factory().newNode("5");
    Node node7 = graphModel.factory().newNode("6");
    Node node8 = graphModel.factory().newNode("7");
    undirectedGraph.addNode(node1);
    undirectedGraph.addNode(node2);
    undirectedGraph.addNode(node3);
    undirectedGraph.addNode(node4);
    undirectedGraph.addNode(node5);
    undirectedGraph.addNode(node6);
    undirectedGraph.addNode(node7);
    undirectedGraph.addNode(node8);
    //Test 3 parallel edges summing weight = 10
    //Related issues ==> #1419 Getting null pointer error when trying to calculate modularity; #1526 NullPointerException on Modularity Statistics with gexf with kind / parallel nodes
    Edge edge12_1 = graphModel.factory().newEdge(node1, node2, 1, 2.f, false);
    Edge edge12_2 = graphModel.factory().newEdge(node1, node2, 2, 5.f, false);
    Edge edge12_3 = graphModel.factory().newEdge(node1, node2, 2, 3.f, false);
    Edge edge23 = graphModel.factory().newEdge(node2, node3, false);
    Edge edge34 = graphModel.factory().newEdge(node3, node4, 0, 10.f, false);
    Edge edge45 = graphModel.factory().newEdge(node4, node5, false);
    Edge edge56 = graphModel.factory().newEdge(node5, node6, 0, 10.f, false);
    Edge edge67 = graphModel.factory().newEdge(node6, node7, false);
    //Test 2 parallel edges summing weight = 10
    Edge edge78_1 = graphModel.factory().newEdge(node7, node8, 0, 5.f, false);
    Edge edge78_2 = graphModel.factory().newEdge(node7, node8, 0, 5.f, false);
    Edge edge81 = graphModel.factory().newEdge(node8, node1, false);
    undirectedGraph.addEdge(edge12_1);
    undirectedGraph.addEdge(edge12_2);
    undirectedGraph.addEdge(edge12_3);
    undirectedGraph.addEdge(edge23);
    undirectedGraph.addEdge(edge34);
    undirectedGraph.addEdge(edge45);
    undirectedGraph.addEdge(edge56);
    undirectedGraph.addEdge(edge67);
    undirectedGraph.addEdge(edge78_1);
    undirectedGraph.addEdge(edge78_2);
    undirectedGraph.addEdge(edge81);
    UndirectedGraph graph = graphModel.getUndirectedGraph();
    Modularity mod = new Modularity();
    Modularity.CommunityStructure theStructure = mod.new CommunityStructure(graph);
    int[] comStructure = new int[graph.getNodeCount()];
    HashMap<String, Double> modularityValues = mod.computeModularity(graph, theStructure, comStructure, 1., true, true);
    int class1 = comStructure[0];
    int class2 = comStructure[1];
    int class4 = comStructure[3];
    int class5 = comStructure[4];
    int class7 = comStructure[6];
    int class8 = comStructure[7];
    assertEquals(class1, class2);
    assertEquals(class7, class8);
    assertNotEquals(class4, class5);
}
Also used : Node(org.gephi.graph.api.Node) GraphModel(org.gephi.graph.api.GraphModel) UndirectedGraph(org.gephi.graph.api.UndirectedGraph) Edge(org.gephi.graph.api.Edge) GraphController(org.gephi.graph.api.GraphController) Test(org.testng.annotations.Test)

Example 68 with GraphModel

use of org.gephi.graph.api.GraphModel in project gephi by gephi.

the class ModularityNGTest method testComputeBarbellGraphModularityHasHighWeight.

@Test
public void testComputeBarbellGraphModularityHasHighWeight() {
    GraphModel graphModel = GraphGenerator.generateCompleteUndirectedGraph(4);
    UndirectedGraph undirectedGraph = graphModel.getUndirectedGraph();
    Node[] nodes = new Node[4];
    for (int i = 0; i < 4; i++) {
        Node currentNode = graphModel.factory().newNode(((Integer) (i + 4)).toString());
        nodes[i] = currentNode;
        undirectedGraph.addNode(currentNode);
    }
    for (int i = 0; i < 3; i++) {
        for (int j = i + 1; j < 4; j++) {
            Edge currentEdge = graphModel.factory().newEdge(nodes[i], nodes[j], false);
            undirectedGraph.addEdge(currentEdge);
        }
    }
    Edge currentEdge = graphModel.factory().newEdge(undirectedGraph.getNode("0"), undirectedGraph.getNode("5"), 0, 100.f, false);
    undirectedGraph.addEdge(currentEdge);
    UndirectedGraph graph = graphModel.getUndirectedGraph();
    Modularity mod = new Modularity();
    Modularity.CommunityStructure theStructure = mod.new CommunityStructure(graph);
    int[] comStructure = new int[graph.getNodeCount()];
    HashMap<String, Double> modularityValues = mod.computeModularity(graph, theStructure, comStructure, 1., true, true);
    int class4 = comStructure[0];
    int class5 = comStructure[5];
    assertEquals(class4, class5);
}
Also used : Node(org.gephi.graph.api.Node) GraphModel(org.gephi.graph.api.GraphModel) UndirectedGraph(org.gephi.graph.api.UndirectedGraph) Edge(org.gephi.graph.api.Edge) Test(org.testng.annotations.Test)

Example 69 with GraphModel

use of org.gephi.graph.api.GraphModel in project gephi by gephi.

the class ModularityNGTest method testTwoConnectedNodesModularity.

@Test
public void testTwoConnectedNodesModularity() {
    GraphModel graphModel = GraphGenerator.generateCompleteUndirectedGraph(2);
    UndirectedGraph graph = graphModel.getUndirectedGraph();
    Modularity mod = new Modularity();
    Modularity.CommunityStructure theStructure = mod.new CommunityStructure(graph);
    int[] comStructure = new int[graph.getNodeCount()];
    HashMap<String, Double> modularityValues = mod.computeModularity(graph, theStructure, comStructure, 1., true, false);
    double modValue = modularityValues.get("modularity");
    int class1 = comStructure[0];
    int class2 = comStructure[1];
    assertEquals(modValue, 0.0);
    assertEquals(class1, class2);
}
Also used : GraphModel(org.gephi.graph.api.GraphModel) UndirectedGraph(org.gephi.graph.api.UndirectedGraph) Test(org.testng.annotations.Test)

Example 70 with GraphModel

use of org.gephi.graph.api.GraphModel in project gephi by gephi.

the class PageRankNGTest method testCyclicGraphPageRank.

@Test
public void testCyclicGraphPageRank() {
    pc.newProject();
    GraphModel graphModel = GraphGenerator.generateCyclicUndirectedGraph(6);
    UndirectedGraph graph = graphModel.getUndirectedGraph();
    PageRank pr = new PageRank();
    double[] pageRank;
    HashMap<Node, Integer> indicies = pr.createIndiciesMap(graph);
    pageRank = pr.calculatePagerank(graph, indicies, false, false, 0.001, 0.6);
    Node n4 = graph.getNode("3");
    int index4 = indicies.get(n4);
    double pr4 = pageRank[index4];
    double res = 0.1667;
    double diff4 = Math.abs(pr4 - res);
    assertTrue(diff4 < 0.01);
}
Also used : GraphModel(org.gephi.graph.api.GraphModel) UndirectedGraph(org.gephi.graph.api.UndirectedGraph) Node(org.gephi.graph.api.Node) Test(org.testng.annotations.Test)

Aggregations

GraphModel (org.gephi.graph.api.GraphModel)235 Node (org.gephi.graph.api.Node)169 Test (org.testng.annotations.Test)168 UndirectedGraph (org.gephi.graph.api.UndirectedGraph)115 GraphController (org.gephi.graph.api.GraphController)105 DirectedGraph (org.gephi.graph.api.DirectedGraph)92 Edge (org.gephi.graph.api.Edge)80 Graph (org.gephi.graph.api.Graph)57 HashMap (java.util.HashMap)52 Column (org.gephi.graph.api.Column)16 LinkedList (java.util.LinkedList)12 ArrayList (java.util.ArrayList)11 FilterBuilder (org.gephi.filters.spi.FilterBuilder)6 GraphView (org.gephi.graph.api.GraphView)6 XMLStreamException (javax.xml.stream.XMLStreamException)5 IOException (java.io.IOException)4 AppearanceController (org.gephi.appearance.api.AppearanceController)4 AppearanceModel (org.gephi.appearance.api.AppearanceModel)4 TimeFormat (org.gephi.graph.api.TimeFormat)4 Element (org.gephi.graph.api.Element)3