pgRouting

Changeset 135

Show
Ignore:
Timestamp:
03/23/08 10:40:41 (8 months ago)
Author:
anton
Message:

debug branch fixed

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/debug/core/src/shooting_star_boost_wrapper.cpp

    r129 r135  
    9090{ 
    9191public: 
    92   shooting_star_goal_visitor(Edge goal, int max_id) : m_goal(goal), e_max_id(max_id) 
     92  shooting_star_goal_visitor(Edge goal, int max_id) : m_goal(goal) 
    9393    { 
    9494      std::fstream myfile; 
     
    9797      myfile.close();     
    9898    } 
    99   shooting_star_goal_visitor(const shooting_star_goal_visitor &gv) : m_goal(gv.m_goal), e_max_id(gv.e_max_id) 
     99  shooting_star_goal_visitor(const shooting_star_goal_visitor &gv) : m_goal(gv.m_goal) 
    100100    { 
    101101      std::fstream myfile; 
  • branches/debug/core/src/shooting_star_search.hpp

    r131 r135  
    155155    { 
    156156      // Get an edge from the top 
    157       myfile<<" examine edge "<<g[e].id<<"\n"<<std::flush; 
     157      myfile<<" examine edge "<<g[s].id<<"\n"<<std::flush; 
    158158      Edge e = Q.top();  Q.pop();             
    159159