Changeset 311fc5


Ignore:
Timestamp:
03/21/12 08:22:44 (14 months ago)
Author:
Tiago de Paula Peixoto <tiago@…>
Branches:
master, python3
Children:
8f9183
Parents:
a5bcb6
git-author:
Tiago de Paula Peixoto <tiago@…> (12/31/11 14:04:23)
git-committer:
Tiago de Paula Peixoto <tiago@…> (03/21/12 08:22:44)
Message:
Whitespace fixup
Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/boost-workaround/boost/graph/graphml.hpp

    r0945c5 r311fc5  
    372372            continue; 
    373373        } 
    374          
     374 
    375375        if (i->first == "_graphml_edge_id") 
    376376        { 
     
    473473            out << "e" << edge_count; 
    474474        edge_count++; 
    475          
     475 
    476476        out << "\" source=\""; 
    477477        if (has_vertex_ids) 
     
    479479                                           source(*e, g))); 
    480480        else 
    481             out << "n" << get(vertex_index, source(*e, g));         
     481            out << "n" << get(vertex_index, source(*e, g)); 
    482482        out << "\" target=\""; 
    483483        if (has_vertex_ids) 
  • src/graph/layout/graph_arf.cc

    r011d7b r311fc5  
    5252    python::def("arf_layout", &arf_layout); 
    5353} 
    54  
    55  
Note: See TracChangeset for help on using the changeset viewer.