Package | Description |
---|---|
edu.ucla.sspace.graph | |
edu.ucla.sspace.graph.io | |
edu.ucla.sspace.util | |
edu.ucla.sspace.util.primitive |
Modifier and Type | Method and Description |
---|---|
<E extends Edge> |
ChineseWhispersClustering.cluster(Graph<E> graph) |
<E extends Edge> |
ChineseWhispersClustering.cluster(Graph<E> graph,
int maxIterations) |
<E extends Edge> |
ChineseWhispersClustering.cluster(Graph<E> graph,
int maxIterations,
double randomAssignmentProb) |
<E extends Edge> |
LinkClustering.cluster(Graph<E> graph,
int numClusters,
Properties props)
Computes the similarity of the graph's edges and merges them until the
specified number of clusters has been reached.
|
<E extends Edge> |
LinkClustering.cluster(Graph<E> graph,
Properties props)
Computes the similarity of the graph's edges and merges them to select
the final partitioning that maximizes the overall cluster density.
|
<E extends WeightedEdge> |
WeightedLinkClustering.cluster(WeightedGraph<E> graph,
int numClusters,
Properties props)
Computes the similarity of the graph's edges and merges them until the
specified number of clusters has been reached.
|
<E extends WeightedEdge> |
WeightedLinkClustering.cluster(WeightedGraph<E> graph,
Properties props)
Computes the similarity of the graph's edges using their weights and
merges them to select the final partitioning that maximizes the overall
cluster density.
|
Modifier and Type | Method and Description |
---|---|
<T,E extends TypedEdge<T>> |
DotIO.writeUndirectedMultigraph(Multigraph<T,E> g,
File f,
Map<T,Color> edgeColors,
MultiMap<Integer,String> vertexMetadata)
The internal method that writes the undirect multigraph according to all
various visualation configuration properties
|
Modifier and Type | Interface and Description |
---|---|
interface |
SortedMultiMap<K,V>
A
MultiMap that provides a total ordering for the keys. |
Modifier and Type | Class and Description |
---|---|
class |
BoundedSortedMultiMap<K,V>
A
MultiMap implementation that grows to a fixed size and then retains only
a fixed number of either keys or mappings. |
class |
HashMultiMap<K,V>
A hash table based implementation of the
MultiMap interface. |
class |
TreeMultiMap<K,V>
A Red-Black tree
SortedMultiMap implementation. |
Modifier and Type | Method and Description |
---|---|
void |
TreeMultiMap.putAll(MultiMap<? extends K,? extends V> m)
Copies all of the mappings from the specified mulit-map to this mutli-map
|
void |
HashMultiMap.putAll(MultiMap<? extends K,? extends V> m)
Copies all of the mappings from the specified mulit-map to this mutli-map
|
void |
MultiMap.putAll(MultiMap<? extends K,? extends V> m)
Copies all of the mappings from the specified mulit-map to this mutli-map
|
Modifier and Type | Interface and Description |
---|---|
interface |
IntIntMultiMap
A
MultiMap subinterface for mapping int primitives as both
keys and values. |
Modifier and Type | Class and Description |
---|---|
class |
IntIntHashMultiMap
A
MultiMap implementation for mapping int primitives as both
keys and values using a hashing strategy. |
Modifier and Type | Method and Description |
---|---|
void |
IntIntHashMultiMap.putAll(MultiMap<? extends Integer,? extends Integer> m)
Copies all of the mappings from the specified mulit-map to this mutli-map
|
Copyright © 2012. All Rights Reserved.