Changeset db470a


Ignore:
Timestamp:
02/20/10 23:36:00 (3 years ago)
Author:
Tiago de Paula Peixoto <tiago@…>
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)
Message:
Small doc typos and improvements
Location:
src/graph_tool
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/graph_tool/centrality/__init__.py

    r08c919 rdb470a  
    308308    trust_map : :class:`~graph_tool.PropertyMap` 
    309309        Edge property map with the values of trust associated with each 
    310         edge. The values must not lie in the range [0,1]. 
     310        edge. The values must lie in the range [0,1]. 
    311311    vprop : PropertyMap, optional (default: None) 
    312312        Vertex property map where the values of eigentrust must be stored. 
     
    420420        edge. The values must lie in the range [0,1]. 
    421421    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. 
    423423    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) 
    428427        A vertex property map where the values of trust for each source 
    429428        must be stored. 
  • src/graph_tool/stats/__init__.py

    r08c919 rdb470a  
    279279 
    280280def remove_parallel_edges(g): 
    281     """Remove all parallel edges from the graph. Only on edge from each parallel 
    282     edge set is left.""" 
     281    """Remove all parallel edges from the graph. Only one edge from each 
     282    parallel edge set is left.""" 
    283283    eprop = label_parallel_edges(g) 
    284284    remove_labeled_edges(g, eprop) 
Note: See TracChangeset for help on using the changeset viewer.