Package | Description |
---|---|
gov.sandia.cognition.collection |
Provides commonly useful collection implementations.
|
gov.sandia.cognition.graph | |
gov.sandia.cognition.graph.community |
Modifier and Type | Method and Description |
---|---|
static DoubleArrayList |
DoubleArrayList.zeros(int size)
Factory method that initializes a DoubleVector of the input size with
zeros in every entry.
|
Constructor and Description |
---|
DoubleArrayList(DoubleArrayList copy)
Copy constructor
|
Modifier and Type | Method and Description |
---|---|
static int |
GraphWalker.probablisticSelect(DoubleArrayList weights,
java.util.Random r)
Helper method that returns the index of the probabilistically selected
input weight.
|
Modifier and Type | Method and Description |
---|---|
DoubleArrayList |
PersonalizedPageRank.getScoresForAllNodes(java.util.List<NodeNameType> nodes)
Returns the vector of all scores for all nodes in the graph (order
determined by node order as stored in the graph) as specified for the
input seeds
|
DoubleArrayList |
PersonalizedPageRank.getScoresForAllNodes(java.util.List<NodeNameType> nodes,
boolean randomized)
Returns the vector of all scores for all nodes in the graph (order
determined by node order as stored in the graph) as specified for the
input seeds
|
DoubleArrayList |
PersonalizedPageRank.getScoresForAllNodes(NodeNameType node)
Returns the vector of all scores for all nodes in the graph (order
determined by node order as stored in the graph)
|
DoubleArrayList |
PersonalizedPageRank.getScoresForAllNodes(NodeNameType node,
boolean randomized)
Returns the vector of all scores for all nodes in the graph (order
determined by node order as stored in the graph)
|
DoubleArrayList |
PersonalizedPageRank.getScoresForAllNodesById(int nodeIdx)
Returns the vector of all scores for all nodes in the graph (order
determined by node order as stored in the graph)
|
DoubleArrayList |
PersonalizedPageRank.getScoresForAllNodesById(int nodeIdx,
boolean randomized)
Returns the vector of all scores for all nodes in the graph (order
determined by node order as stored in the graph)
|
DoubleArrayList |
PersonalizedPageRank.getScoresForAllNodesByIdMultirun(int nodeIdx,
int numRuns)
Returns the vector of all scores for all nodes in the graph (order
determined by node order as stored in the graph) as specified for the
input seed index.
|
DoubleArrayList |
PersonalizedPageRank.getScoresForAllNodesByIdMultirun(java.util.List<java.lang.Integer> nodeIdxs,
int numRuns)
Returns the vector of all scores for all nodes in the graph (order
determined by node order as stored in the graph) as specified for the
input seed index.
|
DoubleArrayList |
PersonalizedPageRank.getScoresForAllNodesByIds(java.util.List<java.lang.Integer> nodeIdxs)
Returns the vector of all scores for all nodes in the graph (order
determined by node order as stored in the graph) as specified for the
input seed indices
|
DoubleArrayList |
PersonalizedPageRank.getScoresForAllNodesByIds(java.util.List<java.lang.Integer> nodeIdxs,
boolean randomized)
Returns the vector of all scores for all nodes in the graph (order
determined by node order as stored in the graph) as specified for the
input seed indices
|
DoubleArrayList |
PersonalizedPageRank.getScoresForAllNodesMultirun(java.util.List<NodeNameType> nodes,
int numRuns)
Returns the vector of all scores for all nodes in the graph (order
determined by node order as stored in the graph) as specified for the
input seed index.
|
DoubleArrayList |
PersonalizedPageRank.getScoresForAllNodesMultirun(NodeNameType node,
int numRuns)
Returns the vector of all scores for all nodes in the graph (order
determined by node order as stored in the graph) as specified for the
input seed.
|