Hello,
I just using graphstream libs and following the first example.
I am testing graph.setAutoCreate( true );
but I get
Exception in thread "main" org.graphstream.graph.ElementNotFoundException: Cannot create edge BC[B--C]. Node 'C' does not exist.
Was it not supposed to create a node if it was not create before?
graph.addNode("A" );
graph.addNode("B" );
graph.setAutoCreate( true );
graph.addEdge( "AB", "A", "B" );
graph.addEdge( "BC", "B", "C" );
graph.addEdge( "CA", "C", "A" );