Changeset d484a32 for src/dgp/sgraph.hh


Ignore:
Timestamp:
10/24/14 13:07:15 (10 years ago)
Author:
Tomasz Obrebski <obrebski@…>
Branches:
master
Children:
acbabee
Parents:
56c300b
git-author:
Tomasz Obrebski <obrebski@…> (10/24/14 13:07:15)
git-committer:
Tomasz Obrebski <obrebski@…> (10/24/14 13:07:15)
Message:

some unnecessary variables/functions deleted

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/dgp/sgraph.hh

    r519eaf5 rd484a32  
    296296  LViterator(SGraph& sg, int n, bool s); 
    297297  int next(); 
     298  void update_edge(SGraph& sg, int e); 
    298299 
    299300private: 
     
    308309  void push_lh(int i); 
    309310  void push_ln(int i); 
     311 
    310312}; 
    311313 
     
    326328        } 
    327329       
     330    } 
     331} 
     332 
     333inline void LViterator::update_edge(SGraph& sg, int n) 
     334{ 
     335  for(vector<int>::iterator i=sg[n].edge.begin(); i!=sg[n].edge.end(); ++i) 
     336    { 
     337      push_ld(*i); 
     338      push_ln(*i); 
    328339    } 
    329340} 
Note: See TracChangeset for help on using the changeset viewer.