-1

I have a project in Java in Eclipse (found it on www) but after importing it as a file system, i get continusly the unresolved errors for those two imports: import org.jgrapht.graph.DefaultDirectedWeightedGraph; import org.jgrapht.graph.DefaultWeightedEdge;

Any idea how to pass this isue and run it;

  • Clearly the project is expecting to use the JGraphT library; is that JAR included in the project contents, or perhaps is the project using Maven or Gradle to mange dependencies? – E-Riz Jul 17 '15 at 20:18
  • No, is not using maven. – user3026113 Jul 18 '15 at 06:33

1 Answers1

0

You need to download jgrapht.jar from here and add it in your project library.

Mind Peace
  • 905
  • 8
  • 29