Package | Description |
---|---|
edu.ucla.sspace.graph | |
edu.ucla.sspace.graph.io |
Modifier and Type | Method and Description |
---|---|
UndirectedMultigraph<T> |
UndirectedMultigraph.copy(Set<Integer> toCopy)
Creates a copy of this graph containing only the specified number of
vertices and all edges between those vertices.
|
static UndirectedMultigraph<String> |
GraphIO.readUndirectedMultigraph(File f) |
static UndirectedMultigraph<String> |
GraphIO.readUndirectedMultigraph(File f,
Indexer<String> vertexIndexer) |
UndirectedMultigraph<T> |
UndirectedMultigraph.subgraph(Set<Integer> subset)
Returns a view of this graph containing only the specified vertices where
the returned graph's vertinces are renamed (0, ..., n).
|
UndirectedMultigraph<T> |
UndirectedMultigraph.subgraph(Set<Integer> subset,
Set<T> edgeTypes)
Returns a subgraph of this graph containing only the specified vertices
and edges of the specified types.
|
Modifier and Type | Method and Description |
---|---|
UndirectedMultigraph<String> |
GraphReaderAdapter.readUndirectedMultigraph(File f)
Reads in the multigraph from the provided file
|
UndirectedMultigraph<String> |
GraphReader.readUndirectedMultigraph(File f)
Reads in the multigraph from the provided file
|
UndirectedMultigraph<String> |
EdgeListReader.readUndirectedMultigraph(File f) |
UndirectedMultigraph<String> |
GraphReaderAdapter.readUndirectedMultigraph(File f,
Indexer<String> vertexLabels) |
UndirectedMultigraph<String> |
GraphReader.readUndirectedMultigraph(File f,
Indexer<String> vertexLabels)
Reads in the multigraph from the provided file, using the specified
Indexer to decide how vertex labels in the file are mapped to
numeric vertices. |
UndirectedMultigraph<String> |
EdgeListReader.readUndirectedMultigraph(File f,
Indexer<String> vertexIndexer) |
Copyright © 2012. All Rights Reserved.