msche / jbpt

Automatically exported from code.google.com/p/jbpt
0 stars 0 forks source link

Error while creating a DirectedGraph #4

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

DirectedGraph d = new DirectedGraph();

        Vertex v1 = new Vertex("A");
        Vertex v2 = new Vertex("B");
        Vertex v3 = new Vertex("C");

        d.addVertex(v1);
        d.addVertex(v2);
        d.addVertex(v3);

        d.addEdge(v1,v2);
        d.addEdge(v2,v3);
        d.addEdge(v3,v1); 

What is the expected output? What do you see instead?

org/jbpt/hypergraph/abs/IVertex : Unsupported major.minor version 51.0

What version of the product are you using? On what operating system?

jbpt-0.2.363.jar

Please provide any additional information below.

Original issue reported on code.google.com by satya123...@gmail.com on 11 Mar 2013 at 2:37

GoogleCodeExporter commented 8 years ago
Try with J2SE 7.

Original comment by artem.po...@gmail.com on 11 Mar 2013 at 2:56

GoogleCodeExporter commented 8 years ago
It worked, thanks !

Original comment by satya123...@gmail.com on 11 Mar 2013 at 3:50

GoogleCodeExporter commented 8 years ago

Original comment by artem.po...@gmail.com on 12 Mar 2013 at 4:03