Changeset 00b7c8


Ignore:
Timestamp:
08/01/07 20:46:39 (6 years ago)
Author:
Tiago de Paula Peixoto <tiago@…>
Children:
a6b8bd8
Parents:
053fc5
git-author:
Tiago de Paula Peixoto <tiago@…> (08/01/07 20:46:39)
git-committer:
Tiago de Paula Peixoto <tiago@…> (08/01/07 20:46:39)
Message:
        * src/graph/graph.cc (GraphInterface::LabelParallelEdges): use vector_property_map instead of HashedDescriptorMap.


git-svn-id: https://svn.forked.de/graph-tool/trunk@119 d4600afd-f417-0410-95de-beed9576f240
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r053fc5 r00b7c8  
     12007-08-01  Tiago de Paula Peixoto  <tiago@forked.de> 
     2 
     3    * src/graph/graph.cc (GraphInterface::LabelParallelEdges): use vector_property_map instead of HashedDescriptorMap. 
     4 
    152007-07-31  Tiago de Paula Peixoto  <tiago@forked.de> 
    26 
  • src/graph/graph.cc

    r40990f r00b7c8  
    433433    catch (property_not_found)  
    434434    { 
    435         typedef HashedDescriptorMap<edge_index_map_t,size_t> parallel_map_t; 
     435        typedef vector_property_map<size_t,edge_index_map_t> parallel_map_t; 
    436436        parallel_map_t parallel_map(_edge_index); 
    437437        check_filter(*this, bind<void>(label_parallel_edges(), _1, _edge_index, parallel_map), reverse_check(), directed_check()); 
Note: See TracChangeset for help on using the changeset viewer.