Changeset db470a
- Timestamp:
- 02/20/10 23:36:00 (3 years ago)
- Children:
- 3ba240
- Parents:
- 4e8a54
- git-author:
- Tiago de Paula Peixoto <tiago@…> (02/20/10 23:36:00)
- git-committer:
- Tiago de Paula Peixoto <tiago@…> (02/20/10 23:36:00)
- Location:
- src/graph_tool
- Files:
-
- 2 edited
-
centrality/__init__.py (modified) (2 diffs)
-
stats/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/graph_tool/centrality/__init__.py
r08c919 rdb470a 308 308 trust_map : :class:`~graph_tool.PropertyMap` 309 309 Edge property map with the values of trust associated with each 310 edge. The values must notlie in the range [0,1].310 edge. The values must lie in the range [0,1]. 311 311 vprop : PropertyMap, optional (default: None) 312 312 Vertex property map where the values of eigentrust must be stored. … … 420 420 edge. The values must lie in the range [0,1]. 421 421 source : Vertex 422 A vertex which is used the as the source for gathering trust values.422 Source vertex. All trust values are computed relative to this vertex. 423 423 target : Vertex (optional, default: None) 424 A vertex which is used the as the only target for which the trust value 425 will be calculated. If left unspecified, the trust values for all 426 targets are computed. 427 vprop : :class:`~graph_tool.PropertyMap`, optional (default: None) 424 The only target for which the trust value will be calculated. If left 425 unspecified, the trust values for all targets are computed. 426 vprop : :class:`~graph_tool.PropertyMap` (optional, default: None) 428 427 A vertex property map where the values of trust for each source 429 428 must be stored. -
src/graph_tool/stats/__init__.py
r08c919 rdb470a 279 279 280 280 def remove_parallel_edges(g): 281 """Remove all parallel edges from the graph. Only on edge from each parallel282 edge set is left."""281 """Remove all parallel edges from the graph. Only one edge from each 282 parallel edge set is left.""" 283 283 eprop = label_parallel_edges(g) 284 284 remove_labeled_edges(g, eprop)
Note: See TracChangeset
for help on using the changeset viewer.


