JUNG:哪些库是必需的依赖项?

发布于 2024-12-07 07:59:04 字数 105 浏览 1 评论 0原文

我正在寻找 JUNG 来可视化有向图。 JUNG 2.0.1 下载附带 17 个不同的 jar 文件,其中一些似乎是示例和演示。

有谁知道如果你想使用 JUNG 需要哪些真正的库?

I'm looking at JUNG for visualizing directed graphs. The JUNG 2.0.1 download comes with 17 different jar files, and some of them appear to be samples and demos.

Does anyone know which are the real libraries that are required if you want to use JUNG?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

假扮的天使 2024-12-14 07:59:04

没关系,它们记录在此 wiki 页面中:

以下是 jung2 的主要项目及其依赖项的列表:

  • jung-api:定义图及其行为的核心接口,以及一些用于处理图的实用程序类。
    • 编译/运行时依赖项:无
  • jung-graph-impl:我们的 jung-api 接口的实现,以及一些用于生成(随机)图的工具。
    • 编译/运行时依赖项:jung-api、collections-generic
    • 其他单元测试依赖项:junit
  • jung-algorithms:用于分析图的类,例如聚类、排序、最短路径计算和布局算法。
    • 编译/运行时依赖项:jung-api、collections-generic、colt
    • 其他单元测试依赖项:junit、jung-graph-impl
  • jung-io:用于保存和存储图形的类。
    • 编译/运行时依赖项:jung-api、jung-algorithms、collections-generic、colt
    • 其他单元测试依赖项:junit、jung-graph-impl
  • jung-visualization:用于将图形呈现为图表的接口和类。
    • 编译/运行时依赖项:jung-api、jung-algorithms、colt
  • jung-samples:如何使用 JUNG 的示例。
    • 编译/运行时依赖项:jung-api、jung-graph-impl、jung-algorithms、jung-io、jung-visualization

never mind, they're documented in this wiki page:

Following is a list of the primary projects of jung2, along with their dependencies:

  • jung-api: the core interfaces that define graphs and their behaviors, plus some utility classes for handling graphs.
    • compile/runtime dependencies: none
  • jung-graph-impl: our implementations of the jung-api interfaces, plus some facilities for generating (random) graphs.
    • compile/runtime dependencies: jung-api, collections-generic
    • additional unit test dependencies: junit
  • jung-algorithms: classes for analyzing graphs, e.g., clustering, ranking, shortest path calculations, and layout algorithms.
    • compile/runtime dependencies: jung-api, collections-generic, colt
    • additional unit test dependencies: junit, jung-graph-impl
  • jung-io: classes for saving and storing graphs.
    • compile/runtime dependencies: jung-api, jung-algorithms, collections-generic, colt
    • additional unit test dependencies: junit, jung-graph-impl
  • jung-visualization: interfaces and classes for rendering graphs as diagrams.
    • compile/runtime dependencies: jung-api, jung-algorithms, colt
  • jung-samples: examples of how to use JUNG.
    • compile/runtimedependencies: jung-api, jung-graph-impl, jung-algorithms, jung-io, jung-visualization
但可醉心 2024-12-14 07:59:04

基于中提到的依赖项列表它的 pom 为 2.0.1 版本,不应该有任何第三方依赖项。

Based upon the dependency list mentioned in its pom for 2.0.1 version, there shouldn't be any 3rd party dependencies.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文