jung-algorithms.
Algorithms for the jung2 project.
Here is the list of declaration for jung-algorithms. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.sf.jung</groupId> <artifactId>jung-algorithms</artifactId> <version>2.0.1</version> </dependency>
If you think this Maven repository POM file listing for jung-algorithms is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following plugins are used in the jung-algorithms-2.0.1.jar
The following packages are defined in the jung-algorithms-2.0.1.jar
edu.uci.ics.jung.algorithms.blockmodel edu.uci.ics.jung.algorithms.cluster edu.uci.ics.jung.algorithms.filters edu.uci.ics.jung.algorithms.flows edu.uci.ics.jung.algorithms.generators edu.uci.ics.jung.algorithms.generators.random edu.uci.ics.jung.algorithms.importance edu.uci.ics.jung.algorithms.layout edu.uci.ics.jung.algorithms.layout.util edu.uci.ics.jung.algorithms.matrix edu.uci.ics.jung.algorithms.metrics edu.uci.ics.jung.algorithms.scoring edu.uci.ics.jung.algorithms.scoring.util edu.uci.ics.jung.algorithms.shortestpath edu.uci.ics.jung.algorithms.transformation edu.uci.ics.jung.algorithms.util
Here is the content of the POM file.
<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <artifactId>jung2</artifactId> <groupId>net.sf.jung</groupId> <version>2.0.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jung-algorithms</artifactId> <name>jung-algorithms</name> <version>2.0.1</version> <url>http://jung.sourceforge.net/site/jung-algorithms</url> <description> Algorithms for the jung2 project </description> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> </manifest> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.sf.jung</groupId> <artifactId>jung-api</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.sf.jung</groupId> <artifactId>jung-graph-impl</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>net.sourceforge.collections</groupId> <artifactId>collections-generic</artifactId> <version>4.01</version> <scope>compile</scope> </dependency> <dependency> <groupId>colt</groupId> <artifactId>colt</artifactId> <version>1.2.0</version> </dependency> </dependencies> </project>